aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-29 17:52:11 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-29 17:52:11 -0700
commit575f497456e4d4669b3b0095482ba2b86f6d2807 (patch)
treeb5bd0c613fe913dac4ef895a6157c9fc9c115bf3 /Makefile
parentad6ce07c44c8f76599d506d38cc3194e886e694a (diff)
downloadgit-575f497456e4d4669b3b0095482ba2b86f6d2807.tar.gz
Add first cut at "git-receive-pack"
It's not working yet, but it's at the point where I want to be able to track my changes. The theory of operation is that this is the "remote" side of a "git push". It can tell us what references the remote side has, receives out reference update commands and a pack-file, and can execute the unpacking command.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2f9e247d8d..c21a1a0d20 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,8 @@ PROG= git-update-cache git-diff-files git-init-db git-write-tree \
git-diff-helper git-tar-tree git-local-pull git-write-blob \
git-get-tar-commit-id git-apply git-stripspace \
git-cvs2git git-diff-stages git-rev-parse git-patch-id \
- git-pack-objects git-unpack-objects git-verify-pack
+ git-pack-objects git-unpack-objects git-verify-pack \
+ git-receive-pack
all: $(PROG)
@@ -125,6 +126,7 @@ git-patch-id: patch-id.c
git-pack-objects: pack-objects.c
git-unpack-objects: unpack-objects.c
git-verify-pack: verify-pack.c
+git-receive-pack: receive-pack.c
git-http-pull: LIBS += -lcurl
git-rev-list: LIBS += -lssl