Skip to content

Commit

Permalink
Add the git-*-script files to the install
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Torvalds committed Apr 25, 2005
1 parent 65f0d0e commit cd2fb81
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
Expand Down

0 comments on commit cd2fb81

Please sign in to comment.