aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-17 13:01:36 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:21 -0700
commit82599b4ccfec1804e6fc976b25a505391d8275d4 (patch)
treec5f3f69b71d1b3947868a297dc4618b375f7515c /Makefile
parent2540f9d534d34a6e4b018f94314d006ef3209d4c (diff)
downloadsparse-dev-82599b4ccfec1804e6fc976b25a505391d8275d4.tar.gz
Preprocessor symbol handling: handle simple cases of #define and
symbol expansion (ie no argument-handling yet). Mark the EOF token as being on a new line, to make preprocessing simpler.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 061b8b40..af4602f5 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 lib.o
- gcc -o $@ test-lexing.o tokenize.o pre-process.o lib.o
+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-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