diff options
author | Camil Staps | 2016-08-25 19:21:16 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-25 19:21:16 +0200 |
commit | d43473edfd99630d9d4702e6187188a34be880cc (patch) | |
tree | 27f26f61e3a62f2dc696f4b4f996cfac9c494000 /compiler/Makefile | |
parent | Fixed overwriting errors (diff) |
Use perror
Diffstat (limited to 'compiler/Makefile')
-rw-r--r-- | compiler/Makefile | 6 |
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) |