[PATCH] Show more details of packfile with verify-pack -v.
[git.git] / Makefile
index c21a1a0..b08727f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@ PROG=   git-update-cache git-diff-files git-init-db git-write-tree \
        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-receive-pack
+       git-receive-pack git-send-pack
 
 all: $(PROG)
 
@@ -46,9 +46,10 @@ install: $(PROG) $(SCRIPTS)
 
 LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
         tag.o date.o index.o diff-delta.o patch-delta.o entry.o \
-        epoch.o refs.o csum-file.o verify_pack.o
+        epoch.o refs.o csum-file.o pack-check.o pkt-line.o
 LIB_FILE=libgit.a
-LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h pack.h
+LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h \
+       pack.h pkt-line.h
 
 LIB_H += strbuf.h
 LIB_OBJS += strbuf.o
@@ -127,6 +128,7 @@ 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-send-pack: send-pack.c
 
 git-http-pull: LIBS += -lcurl
 git-rev-list: LIBS += -lssl