aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-10-30 02:16:39 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-10-30 02:16:39 -0400
commit61af5802a78384d7c115738d5a87d7b5102d5b0c (patch)
tree66b13d484d287161814b273e546357d2da37c750 /Makefile
parent9ebb039a81f5ea06e97d84ef7ee447da9dfca204 (diff)
Remove redundant warnings
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3a64d62b..2a4737ea 100644
--- a/Makefile
+++ b/Makefile
@@ -39,18 +39,18 @@ all: libtomo.so tomo
tomo: tomo.o $(BUILTIN_OBJS) ast.o parse.o environment.o types.o typecheck.o structs.o enums.o compile.o repl.o cordhelpers.o
@echo $(CC) $(CFLAGS_PLACEHOLDER) $(LDFLAGS) $^ $(LDLIBS) -o $@
- @$(CC) $(CFLAGS) $(CWARN) $(LDFLAGS) $^ $(LDLIBS) -o $@
+ @$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
libtomo.so: $(BUILTIN_OBJS)
@echo $(CC) $^ $(CFLAGS_PLACEHOLDER) $(OSFLAGS) -lgc -lcord -lm -lunistring -lgmp -ldl -Wl,-soname,libtomo.so -shared -o $@
- @$(CC) $^ $(CFLAGS) $(CWARN) $(OSFLAGS) -lgc -lcord -lm -lunistring -lgmp -ldl -Wl,-soname,libtomo.so -shared -o $@
+ @$(CC) $^ $(CFLAGS) $(OSFLAGS) -lgc -lcord -lm -lunistring -lgmp -ldl -Wl,-soname,libtomo.so -shared -o $@
tags:
ctags *.[ch] **/*.[ch]
%.o: %.c ast.h environment.h types.h
@echo $(CC) $(CFLAGS_PLACEHOLDER) -c $< -o $@
- @$(CC) $(CFLAGS) $(CWARN) -c $< -o $@
+ @$(CC) $(CFLAGS) -c $< -o $@
%.tm.testresult: %.tm tomo
@printf '\x1b[33;1;4m%s\x1b[m\n' $<