Hi, On Wed, 5 Aug 2009, Daniel Barkalow wrote: > diff --git a/Makefile b/Makefile > index 504646a..35117fc 100644 > --- a/Makefile > +++ b/Makefile > @@ -981,6 +981,7 @@ else > CURL_LIBCURL = -lcurl > endif > BUILTIN_OBJS += builtin-http-fetch.o > + PROGRAMS += git-remote-http$X git-remote-https$X git-remote-ftp$X git-http-fetch$X > EXTLIBS += $(CURL_LIBCURL) > LIB_OBJS += http.o http-walker.o > curl_check := $(shell (echo 070908; curl-config --vernum) | sort -r | sed -ne 2p) > @@ -1491,6 +1492,10 @@ git-http-push$X: revision.o http.o http-push.o $(GITLIBS) > $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ > $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT) > > +git-remote-http$X git-remote-https$X git-remote-ftp$X: remote-curl.o http.o http-walker.o $(GITLIBS) > + $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ > + $(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT) > + Ooops, I missed this part. How about making git-remote-https and git-remote-ftp hardlinks to git-remote-http? Ciao, Dscho -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html