Ilari Liusvaara <ilari.liusvaara@xxxxxxxxxxx> wrote: > HTTP, HTTPS and FTP are no longer special to transport code. Also > add support for FTPS (curl supports it so it is easy). ... > diff --git a/Makefile b/Makefile > index 42744a4..be0be87 100644 > --- a/Makefile > +++ b/Makefile > @@ -1676,7 +1676,19 @@ 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-curl$X: remote-curl.o http.o http-walker.o $(GITLIBS) > +git-remote-http$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) > + > +git-remote-https$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) > + > +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) > + > +git-remote-ftps$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) These should all be hardlinks to a single executable, not duplicate relinks of the same object files. -- Shawn. -- 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