summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-05 00:38:41 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-05 00:38:41 (GMT)
commitfb335158d5a93349e16bc0985e75e93bb9fcd5eb (patch)
tree0707260f4a4320880a62ddd80aee66c8d0850484 /Makefile
parent5edbcd8d778d81254d2c8a4229c76c6fa7880407 (diff)
downloadgit-fb335158d5a93349e16bc0985e75e93bb9fcd5eb.zip
git-fb335158d5a93349e16bc0985e75e93bb9fcd5eb.tar.gz
git-fb335158d5a93349e16bc0985e75e93bb9fcd5eb.tar.bz2
Makefile: do not link rev-list any specially.
We used to depend on bignum from openssl for rev-list to compute merge-order, but there is no reason to use different build recipe from other programs anymore. Just build it with git-%$X rule like everybody else. Noticed by Alexey Dobriyan. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a3f7e92..45484fc 100644
--- a/Makefile
+++ b/Makefile
@@ -564,10 +564,6 @@ git-http-push$X: revision.o 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 $(LIB_FILE)
- $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
- $(LIBS) $(OPENSSL_LIBSSL)
-
init-db.o: init-db.c
$(CC) -c $(ALL_CFLAGS) \
-DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $*.c