diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-03-17 13:01:36 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:21 -0700 |
| commit | 82599b4ccfec1804e6fc976b25a505391d8275d4 (patch) | |
| tree | c5f3f69b71d1b3947868a297dc4618b375f7515c /Makefile | |
| parent | 2540f9d534d34a6e4b018f94314d006ef3209d4c (diff) | |
| download | sparse-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-- | 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 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 |
