aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-17 12:06:37 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:21 -0700
commit2540f9d534d34a6e4b018f94314d006ef3209d4c (patch)
tree033e5c8fe7ef6a940dfd1e802169023ed32d6c09 /Makefile
parentac3017e7f3762cb212fa86beb9d951e50e84e432 (diff)
downloadsparse-dev-2540f9d534d34a6e4b018f94314d006ef3209d4c.tar.gz
Add initial preprocessor pass (doesn't actually do much)
Make tokens know about newlines
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