aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e6fee791..81380e32 100644
--- a/Makefile
+++ b/Makefile
@@ -7,13 +7,14 @@ all: $(PROGRAMS)
test-lexing: test-lexing.o tokenize.o lib.o
gcc -o $@ test-lexing.o tokenize.o lib.o
-test-parsing: test-parsing.o parse.o tokenize.o lib.o
- gcc -o $@ test-parsing.o parse.o tokenize.o lib.o
+test-parsing: test-parsing.o parse.o tokenize.o symbol.o lib.o
+ gcc -o $@ test-parsing.o parse.o tokenize.o symbol.o lib.o
test-parsing.o: token.h parse.h
test-lexing.o: token.h
tokenize.o: token.h
parse.o: token.h parse.h
+symbol.o: symbol.h token.h parse.h
clean:
rm -f *.[oasi] $(PROGRAMS)