Makefile: do not include dependency-file on `make clean`

When envoking clean target, make should not perform the dependency file
generation triggered by include.
Este commit está contenido en:
Lynn Lin 2010-07-15 14:38:06 +08:00 cometido por Lars Hjemli
padre 6821d8ea4a
commit ab61029201
Se han modificado 1 ficheros con 3 adiciones y 1 borrados

Ver fichero

@ -139,7 +139,9 @@ cgit: $(OBJECTS) libgit
cgit.o: VERSION
-include $(OBJECTS:.o=.d)
ifneq "$(MAKECMDGOALS)" "clean"
-include $(OBJECTS:.o=.d)
endif
libgit:
$(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) libgit.a