diff options
| author | Linus Torvalds <torvalds@penguin.transmeta.com> | 2003-03-24 14:21:36 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:41 -0700 |
| commit | 61dfa0129b878aee7b63f20b0d647e6b30ae412c (patch) | |
| tree | bfe8186827978879f19f99fe9ddb7f76815dd47d /Makefile | |
| parent | e6b18f888d6f8f28e84a47ec1a348741ef7c63c2 (diff) | |
| download | sparse-dev-61dfa0129b878aee7b63f20b0d647e6b30ae412c.tar.gz | |
Split the compile time constant evaluation up into
evaluate.c instead of keeping it in pre-process.c.
Add the proper dependencies
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,7 @@ PROGRAMS=test-lexing test-parsing HEADERS=token.h parse.h lib.h symbol.h scope.h expression.h COMMON= parse.o tokenize.o pre-process.o symbol.o lib.o scope.o \ - expression.o show-parse.o + expression.o show-parse.o evaluate.o all: $(PROGRAMS) @@ -16,6 +16,7 @@ test-lexing: test-lexing.o $(COMMON) test-parsing: test-parsing.o $(COMMON) gcc -o $@ $< $(COMMON) +evaluate.o: $(HEADERS) expression.o: $(HEADERS) lib.o: $(HEADERS) parse.o: $(HEADERS) |
