[PATCH] Show more details of packfile with verify-pack -v.
[git.git] / Makefile
index 1736980..b08727f 100644 (file)
--- 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-pack-objects git-unpack-objects git-verify-pack \
+       git-receive-pack git-send-pack
 
 all: $(PROG)
 
@@ -45,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
+        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
+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
@@ -124,6 +126,9 @@ git-rev-parse: rev-parse.c
 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-send-pack: send-pack.c
 
 git-http-pull: LIBS += -lcurl
 git-rev-list: LIBS += -lssl