From: Johannes Schindelin Date: Tue, 21 Feb 2006 12:08:21 +0000 (+0100) Subject: Fix "gmake -j" X-Git-Tag: v1.3.0-rc1~166^2 X-Git-Url: https://git.octo.it/?p=git.git;a=commitdiff_plain;h=b992933853ccffac85f7e40310167ef7b8f0432e Fix "gmake -j" In my attempt to port git to IRIX, I broke it. Sorry. Signed-off-by: Johannes E. Schindelin Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index d5a95c41..c434e0d9 100644 --- a/Makefile +++ b/Makefile @@ -515,15 +515,15 @@ git-ssh-upload$X: rsh.o git-ssh-pull$X: rsh.o fetch.o git-ssh-push$X: rsh.o -git-http-fetch$X: fetch.o http.o http-fetch.o +git-http-fetch$X: fetch.o http.o http-fetch.o $(LIB_FILE) $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ $(LIBS) $(CURL_LIBCURL) -git-http-push$X: http.o http-push.o +git-http-push$X: http.o http-push.o $(LIB_FILE) $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT) -git-rev-list$X: rev-list.o +git-rev-list$X: rev-list.o $(LIB_FILE) $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ $(LIBS) $(OPENSSL_LIBSSL)