aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@penguin.transmeta.com>2003-03-24 14:21:36 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:41 -0700
commit61dfa0129b878aee7b63f20b0d647e6b30ae412c (patch)
treebfe8186827978879f19f99fe9ddb7f76815dd47d /Makefile
parente6b18f888d6f8f28e84a47ec1a348741ef7c63c2 (diff)
downloadsparse-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--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 814241fb..d96c0bad 100644
--- a/Makefile
+++ b/Makefile
@@ -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)