diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-08-19 21:42:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-19 21:42:46 -0700 |
commit | c8a4cbc23916feeae89a7c59523781e8bf8ac103 (patch) | |
tree | c6b68000b187ca8dfb07427086f37ca127c589ca /Makefile | |
parent | 55e839e378416b70720308e86439e2ad6ecccc4a (diff) | |
parent | c82b0748e53d51cc999c16f97bc76c25f2b46b12 (diff) | |
download | git-c8a4cbc23916feeae89a7c59523781e8bf8ac103.tar.gz git-c8a4cbc23916feeae89a7c59523781e8bf8ac103.tar.xz |
Merge branch 'rs/imap'
* rs/imap:
Documentation: Improve documentation for git-imap-send(1)
imap-send.c: more style fixes
imap-send.c: style fixes
git-imap-send: Support SSL
git-imap-send: Allow the program to be run from subdirectories of a git tree
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1222,7 +1222,9 @@ endif git-%$X: %.o $(GITLIBS) $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS) -git-imap-send$X: imap-send.o $(LIB_FILE) +git-imap-send$X: imap-send.o $(GITLIBS) + $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ + $(LIBS) $(OPENSSL_LINK) $(OPENSSL_LIBSSL) http.o http-walker.o http-push.o transport.o: http.h |