diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-03-17 12:06:37 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:21 -0700 |
| commit | 2540f9d534d34a6e4b018f94314d006ef3209d4c (patch) | |
| tree | 033e5c8fe7ef6a940dfd1e802169023ed32d6c09 /Makefile | |
| parent | ac3017e7f3762cb212fa86beb9d951e50e84e432 (diff) | |
| download | sparse-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-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |
