summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a348ab7)
raw | patch | inline | side by side (parent: a348ab7)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Tue, 21 Feb 2006 12:08:21 +0000 (13:08 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 22 Feb 2006 00:48:10 +0000 (16:48 -0800) |
In my attempt to port git to IRIX, I broke it. Sorry.
Signed-off-by: Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index d5a95c4101015fbc7c4c28b0419b78082f99d37d..c434e0d9eb612674a3a7b7ac50f60a3b7cc347e0 100644 (file)
--- a/Makefile
+++ b/Makefile
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)