diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-21 12:31:33 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-21 12:31:33 -0700 |
commit | 0493a3fd5204a36bc961a8611770ddb9ec1ed8ed (patch) | |
tree | e149dae0b61ba73401b9765edcfc969e9c082e7e /Documentation | |
parent | 28ad81f58ea25b915a400dab908f93373f9f63de (diff) | |
parent | b163512d4eb36ee946908b682c7863658c5a8db4 (diff) | |
download | git-0493a3fd5204a36bc961a8611770ddb9ec1ed8ed.tar.gz |
Merge branch 'fixes'
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 822098ad9c..aecae676de 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -44,14 +44,16 @@ man: man1 man7 man1: $(DOC_MAN1) man7: $(DOC_MAN7) -install: +install: man $(INSTALL) -d -m755 $(DESTDIR)/$(man1) $(DESTDIR)/$(man7) $(INSTALL) $(DOC_MAN1) $(DESTDIR)/$(man1) $(INSTALL) $(DOC_MAN7) $(DESTDIR)/$(man7) # 'include' dependencies -git-diff-%.txt: diff-format.txt diff-options.txt - touch $@ +$(patsubst %.txt,%.1,$(wildcard git-diff-*.txt)): \ + diff-format.txt diff-options.txt +$(patsubst %,%.1,git-fetch git-pull git-push): pull-fetch-param.txt +git.7: ../README clean: rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html |