diff options
| author | Josh Triplett <josh@freedesktop.org> | 2007-07-30 00:04:25 -0700 |
|---|---|---|
| committer | Josh Triplett <josh@freedesktop.org> | 2007-07-30 00:04:25 -0700 |
| commit | 470804edd6bdc8eacf2d29adfd046ed26e59597c (patch) | |
| tree | 776be0eb001682e1951325900b3720706f997e3b /Makefile | |
| parent | b5a8032aaeaf2121a642ead32653d4288fa2983d (diff) | |
| download | sparse-dev-470804edd6bdc8eacf2d29adfd046ed26e59597c.tar.gz | |
Add some missing dependencies in the Makefile
ptrlist.o didn't depend on $(LIB_H); in particular, it didn't depend on
compat.h, which manifested in "bad allocation size" errors when changing the
chunk size in compat.h and running "make" without "make clean".
test-unssa.o also didn't depend on $(LIB_H).
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -129,6 +129,7 @@ evaluate.o: $(LIB_H) expression.o: $(LIB_H) lib.o: $(LIB_H) allocate.o: $(LIB_H) +ptrlist.o: $(LIB_H) parse.o: $(LIB_H) pre-process.o: $(LIB_H) pre-process.h scope.o: $(LIB_H) @@ -148,6 +149,7 @@ test-lexing.o: $(LIB_H) test-parsing.o: $(LIB_H) test-linearize.o: $(LIB_H) test-dissect.o: $(LIB_H) +test-unssa.o: $(LIB_H) ctags.o: $(LIB_H) compile.o: $(LIB_H) compile.h compile-i386.o: $(LIB_H) compile.h |
