The recent hash/compression switch-over missed the blob creation.
[git.git] / Makefile
index 85859b0..cd299f8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,8 @@ AR=ar
 
 PROG=   update-cache show-diff init-db write-tree read-tree commit-tree \
        cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
-       check-files ls-tree merge-base merge-cache
+       check-files ls-tree merge-base merge-cache unpack-file git-export \
+       diff-cache convert-cache
 
 all: $(PROG)
 
@@ -78,14 +79,29 @@ merge-base: merge-base.o $(LIB_FILE) object.o commit.o tree.o blob.o
 merge-cache: merge-cache.o $(LIB_FILE)
        $(CC) $(CFLAGS) -o merge-cache merge-cache.o $(LIBS)
 
+unpack-file: unpack-file.o $(LIB_FILE)
+       $(CC) $(CFLAGS) -o unpack-file unpack-file.o $(LIBS)
+
+git-export: git-export.o $(LIB_FILE)
+       $(CC) $(CFLAGS) -o git-export git-export.o $(LIBS)
+
+diff-cache: diff-cache.o $(LIB_FILE)
+       $(CC) $(CFLAGS) -o diff-cache diff-cache.o $(LIBS)
+
+convert-cache: convert-cache.o $(LIB_FILE)
+       $(CC) $(CFLAGS) -o convert-cache convert-cache.o $(LIBS)
+
 blob.o: $(LIB_H)
 cat-file.o: $(LIB_H)
 check-files.o: $(LIB_H)
 checkout-cache.o: $(LIB_H)
 commit.o: $(LIB_H)
 commit-tree.o: $(LIB_H)
+convert-cache.o: $(LIB_H)
+diff-cache.o: $(LIB_H)
 diff-tree.o: $(LIB_H)
 fsck-cache.o: $(LIB_H)
+git-export.o: $(LIB_H)
 init-db.o: $(LIB_H)
 ls-tree.o: $(LIB_H)
 merge-base.o: $(LIB_H)
@@ -100,6 +116,7 @@ show-files.o: $(LIB_H)
 tree.o: $(LIB_H)
 update-cache.o: $(LIB_H)
 usage.o: $(LIB_H)
+unpack-file.o: $(LIB_H)
 write-tree.o: $(LIB_H)
 
 clean: