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
@@ -130,25 +130,27 @@ endif | |||
130 | ifdef NO_OPENSSL | 130 | ifdef NO_OPENSSL |
131 | CFLAGS += -DNO_OPENSSL | 131 | CFLAGS += -DNO_OPENSSL |
132 | GIT_OPTIONS += NO_OPENSSL=1 | 132 | GIT_OPTIONS += NO_OPENSSL=1 |
133 | else | 133 | else |
134 | EXTLIBS += -lcrypto | 134 | EXTLIBS += -lcrypto |
135 | endif | 135 | endif |
136 | 136 | ||
137 | cgit: $(OBJECTS) libgit | 137 | cgit: $(OBJECTS) libgit |
138 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | 138 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
139 | 139 | ||
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: |
145 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) libgit.a | 147 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) libgit.a |
146 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) xdiff/lib.a | 148 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) xdiff/lib.a |
147 | 149 | ||
148 | test: all | 150 | test: all |
149 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 151 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |
150 | 152 | ||
151 | install: all | 153 | install: all |
152 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH) | 154 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH) |
153 | $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 155 | $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
154 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) | 156 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) |