diff options
author | Camil Staps | 2016-08-29 19:55:21 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-29 19:55:21 +0200 |
commit | c62d7748aace9ae1234c53703fe8231236c9e123 (patch) | |
tree | c0c6c6017914cfe9b3b8995759a454564bb6faf3 /interpreter/Makefile | |
parent | match EXPR_APP (diff) |
Currying arguments and Code applications
Diffstat (limited to 'interpreter/Makefile')
-rw-r--r-- | interpreter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interpreter/Makefile b/interpreter/Makefile index 246dd03..56619ce 100644 --- a/interpreter/Makefile +++ b/interpreter/Makefile @@ -1,7 +1,7 @@ CFLAGS=-Wall -Werror -g -DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h code.h -OBJ=fuspel.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o +DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h code.h graphs.h +OBJ=fuspel.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o graphs.o EXE=fuspel .PHONY: all clean |