aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d96c0bad..f5be9052 100644
--- a/Makefile
+++ b/Makefile
@@ -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)