Makefile: do not include dependency-file on make clean

When envoking clean target, make should not perform the dependency file
generation triggered by include.
Этот коммит содержится в:
Lynn Lin 2010-07-15 14:38:06 +08:00 коммит произвёл Lars Hjemli
родитель 6821d8ea4a
Коммит ab61029201

Просмотреть файл

@ -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