diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ CC=gcc CFLAGS=-g -Wall -PROGRAMS=test-lexing test-parsing +PROGRAMS=test-lexing test-parsing obfuscate HEADERS=token.h parse.h lib.h symbol.h scope.h expression.h @@ -16,6 +16,9 @@ test-lexing: test-lexing.o $(COMMON) test-parsing: test-parsing.o $(COMMON) gcc -o $@ $< $(COMMON) +obfuscate: obfuscate.o $(COMMON) + gcc -o $@ $< $(COMMON) + evaluate.o: $(HEADERS) expression.o: $(HEADERS) lib.o: $(HEADERS) |
