aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-18 13:46:58 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:25 -0700
commit025e893c8a08a8f541eccc960d3e25302791809d (patch)
tree244939d252ee80ee483356b6950361dac81f4496 /Makefile
parent3982aeffa6d2f202caf57f874015b8fd3db04cba (diff)
downloadsparse-dev-025e893c8a08a8f541eccc960d3e25302791809d.tar.gz
Make the preprocessor use the C parser, and then evaluate preprocessor
expressions by just walking the parse tree. We de-allocate all the C preprocessor expressions at the end, before we actually start doing the real C parsing. There is no history.
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