aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index af4602f5..4316d2d3 100644
--- a/Makefile
+++ b/Makefile
@@ -4,8 +4,8 @@ PROGRAMS=test-lexing test-parsing
all: $(PROGRAMS)
-test-lexing: test-lexing.o tokenize.o pre-process.o symbol.o lib.o
- gcc -o $@ test-lexing.o tokenize.o pre-process.o symbol.o lib.o
+test-lexing: test-lexing.o parse.o tokenize.o pre-process.o symbol.o lib.o
+ gcc -o $@ test-lexing.o parse.o tokenize.o pre-process.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