aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 814241fb..d96c0bad 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ PROGRAMS=test-lexing test-parsing
HEADERS=token.h parse.h lib.h symbol.h scope.h expression.h
COMMON= parse.o tokenize.o pre-process.o symbol.o lib.o scope.o \
- expression.o show-parse.o
+ expression.o show-parse.o evaluate.o
all: $(PROGRAMS)
@@ -16,6 +16,7 @@ test-lexing: test-lexing.o $(COMMON)
test-parsing: test-parsing.o $(COMMON)
gcc -o $@ $< $(COMMON)
+evaluate.o: $(HEADERS)
expression.o: $(HEADERS)
lib.o: $(HEADERS)
parse.o: $(HEADERS)