diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-03-18 13:46:58 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:25 -0700 |
| commit | 025e893c8a08a8f541eccc960d3e25302791809d (patch) | |
| tree | 244939d252ee80ee483356b6950361dac81f4496 /Makefile | |
| parent | 3982aeffa6d2f202caf57f874015b8fd3db04cba (diff) | |
| download | sparse-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
