aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 618b3637..061b8b40 100644
--- a/Makefile
+++ b/Makefile
@@ -4,11 +4,11 @@ PROGRAMS=test-lexing test-parsing
all: $(PROGRAMS)
-test-lexing: test-lexing.o tokenize.o lib.o
- gcc -o $@ test-lexing.o tokenize.o lib.o
+test-lexing: test-lexing.o tokenize.o pre-process.o lib.o
+ gcc -o $@ test-lexing.o tokenize.o pre-process.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: test-parsing.o parse.o tokenize.o symbol.o pre-process.o lib.o
+ gcc -o $@ test-parsing.o parse.o tokenize.o symbol.o pre-process.o lib.o
test-parsing.o: token.h parse.h
test-lexing.o: token.h