author | Lynn Lin <Lin_Lynn@emc.com> | 2010-07-15 06:38:06 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-07-22 21:32:06 (UTC) |
commit | ab610292014c938a8f4e4004e9365bfc6cf9cbd6 (patch) (unidiff) | |
tree | 90fdeda7abec710e7516612828415bfbca444ffa | |
parent | 6821d8ea4a64d15b8f284d1af01ab184ef1e76c3 (diff) | |
download | cgit-ab610292014c938a8f4e4004e9365bfc6cf9cbd6.zip cgit-ab610292014c938a8f4e4004e9365bfc6cf9cbd6.tar.gz cgit-ab610292014c938a8f4e4004e9365bfc6cf9cbd6.tar.bz2 |
Makefile: do not include dependency-file on `make clean`
When envoking clean target, make should not perform the dependency file
generation triggered by include.
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -140,5 +140,7 @@ cgit: $(OBJECTS) libgit | |||
140 | cgit.o: VERSION | 140 | cgit.o: VERSION |
141 | 141 | ||
142 | -include $(OBJECTS:.o=.d) | 142 | ifneq "$(MAKECMDGOALS)" "clean" |
143 | -include $(OBJECTS:.o=.d) | ||
144 | endif | ||
143 | 145 | ||
144 | libgit: | 146 | libgit: |