Displaying 2 results from an estimated 2 matches for "bashdb".
Did you mean:
based
2007 Dec 18
3
[LLVMdev] Broken makefile dependencies?
I am seeing a very strange situation where doing:
make -C dir all
does not rebuild anything in dir, even though stuff is stale. This
command is what the recursive makefile uses to walk the directory
structure.
The really strange thing is that:
cd dir; make all
does rebuild stuff.
Does anyone have any idea what is going on here? I thought they were
identical.
-Chris
2007 Dec 18
0
[LLVMdev] Broken makefile dependencies?
> make -d -C dir all >run1
> cd dir; make -d all >../run2
cd ..
diff -udb run1 run2 | less
But maybe you don't have GNU make, but some Apple (BSD-derived)
make which doesn't have the "-d" switch ...