On Mon, Mar 03, 2008 at 11:47:01AM +0000, Johannes Schindelin wrote: > On Mon, 3 Mar 2008, Martin Koegler wrote: > > > When I modified fetch-pack.h I was surprised by the fact, that it does > > not result in rebuilding all object files. In fact, no file was rebuilt. > > It turned out, that fetch-pack.h was not mentioned in the Makefile. > > > > A quick search (on next) showed, that other header files are also not > > taking part in dependency checking: > > > > $for a in `ls *.h`; do grep "$a" Makefile >/dev/null || (echo "missing: $a"; grep "$a" *.c|grep include) ; done > > missing: branch.h > > Somehow I miss "wt-status.h" in your list. There is a dependency for wt-status.h, so it does not show up in my grep: builtin-revert.o wt-status.o: wt-status.h But this is complete: $ grep wt-status.h *.c builtin-commit.c:#include "wt-status.h" builtin-revert.c:#include "wt-status.h" wt-status.c:#include "wt-status.h" mfg Martin Kögler -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html