aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-20 11:35:19 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:31 -0700
commit904f38b41f4d63e8d5b69fc17380a3af08c63c33 (patch)
treef95aa3f2fa76498c7838cbdaa1862269ef97937e
parent0474cdb18bbe72035ca493487776dbb5a8b325b5 (diff)
downloadsparse-dev-904f38b41f4d63e8d5b69fc17380a3af08c63c33.tar.gz
Fix dependencies again, after again having been bitten by me being
lazy and not doing it right.
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6e296de9..9a0315db 100644
--- a/Makefile
+++ b/Makefile
@@ -13,11 +13,14 @@ test-lexing: test-lexing.o $(COMMON)
test-parsing: test-parsing.o $(COMMON)
gcc -o $@ $< $(COMMON)
-test-parsing.o: $(HEADERS)
-test-lexing.o: $(HEADERS)
-tokenize.o: $(HEADERS)
+lib.o: $(HEADERS)
parse.o: $(HEADERS)
+pre-process.o: $(HEADERS)
+scope.o: $(HEADERS)
symbol.o: $(HEADERS)
+test-lexing.o: $(HEADERS)
+test-parsing.o: $(HEADERS)
+tokenize.o: $(HEADERS)
clean:
rm -f *.[oasi] core core.[0-9]* $(PROGRAMS)