[PATCH] Give show-files the ability to process exclusion pattern.
[gitweb.git] / Makefile
index e108b98e63e9f550f4fb1a0f48170643374b4401..378d5ee9a24a9fb7690bfdf79fd3fde2b9563fad 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,16 +17,20 @@ SCRIPTS=git-merge-one-file-script git-prune-script git-pull-script git-tag-scrip
 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 unpack-file git-export \
-       diff-cache convert-cache http-pull rpush rpull rev-list git-mktag
+       diff-cache convert-cache http-pull rpush rpull rev-list git-mktag \
+       diff-tree-helper
 
 all: $(PROG)
 
 install: $(PROG) $(SCRIPTS)
        install $(PROG) $(SCRIPTS) $(HOME)/bin/
 
-LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o
+LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o tag.o
 LIB_FILE=libgit.a
-LIB_H=cache.h object.h
+LIB_H=cache.h object.h blob.h tree.h commit.h tag.h
+
+LIB_H += strbuf.h
+LIB_OBJS += strbuf.o
 
 LIB_H += diff.h
 LIB_OBJS += diff.o