aboutsummaryrefslogtreecommitdiff
path: root/compiler/Makefile
diff options
context:
space:
mode:
authorCamil Staps2016-08-25 19:21:16 +0200
committerCamil Staps2016-08-25 19:21:16 +0200
commitd43473edfd99630d9d4702e6187188a34be880cc (patch)
tree27f26f61e3a62f2dc696f4b4f996cfac9c494000 /compiler/Makefile
parentFixed overwriting errors (diff)
Use perror
Diffstat (limited to 'compiler/Makefile')
-rw-r--r--compiler/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/Makefile b/compiler/Makefile
index a4485c4..ef54249 100644
--- a/compiler/Makefile
+++ b/compiler/Makefile
@@ -1,7 +1,7 @@
-CFLAGS=-Wall
+CFLAGS=-Wall -s
-DEPS=lex.h syntax.h error.h print.h parse.h log.h eval.h mem.h
-OBJ=fuspelc.o lex.o syntax.o error.o print.o parse.o log.o eval.o mem.o
+DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h
+OBJ=fuspelc.o lex.o syntax.o print.o parse.o log.o eval.o mem.o
EXE=fuspelc
all: $(EXE)