aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-25 15:29:45 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-25 15:29:45 -0700
commitcd2fb81d1165cabf76e7f1c31386796e35dd1987 (patch)
tree607829c662335a37120d50bbd2f57c5e0700cea6 /Makefile
parent65f0d0ee4627dd0f0468ceded38677076d78feb5 (diff)
downloadgit-cd2fb81d1165cabf76e7f1c31386796e35dd1987.tar.gz
Add the git-*-script files to the install
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 953e880622..10d041b51f 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,7 @@ CFLAGS=-g -O2 -Wall
CC=gcc
AR=ar
+SCRIPTS=git-merge-one-file-script git-prune-script git-pull-script git-tag-script
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 \
@@ -20,8 +21,8 @@ PROG= update-cache show-diff init-db write-tree read-tree commit-tree \
all: $(PROG)
-install: $(PROG)
- install $(PROG) $(HOME)/bin/
+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_FILE=libgit.a