diff options
author | Camil Staps | 2016-08-26 00:46:55 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-26 00:46:55 +0200 |
commit | 00e2c70b01f28c9b00ec3d5096895a387676774d (patch) | |
tree | 8ee65ec944e5cdd79d517c723e6b506fa7ee43a1 /interpreter/Makefile | |
parent | Added tup example (diff) |
Linking C functions
Diffstat (limited to 'interpreter/Makefile')
-rw-r--r-- | interpreter/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interpreter/Makefile b/interpreter/Makefile index 5288c88..25c28ee 100644 --- a/interpreter/Makefile +++ b/interpreter/Makefile @@ -1,7 +1,7 @@ -CFLAGS=-Wall -Wextra -Werror -Wpedantic -s +CFLAGS=-Wall -Wextra -Werror -s -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 +DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h code.h +OBJ=fuspelc.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o EXE=fuspelc .PHONY: all clean |