diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-04 17:38:41 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-04 17:38:41 -0700 |
commit | fb335158d5a93349e16bc0985e75e93bb9fcd5eb (patch) | |
tree | 0707260f4a4320880a62ddd80aee66c8d0850484 /Makefile | |
parent | 5edbcd8d778d81254d2c8a4229c76c6fa7880407 (diff) | |
download | git-fb335158d5a93349e16bc0985e75e93bb9fcd5eb.tar.gz git-fb335158d5a93349e16bc0985e75e93bb9fcd5eb.tar.xz |
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-- | Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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 |