summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 09d9208)
raw | patch | inline | side by side (parent: 09d9208)
author | Junio C Hamano <junkio@cox.net> | |
Wed, 21 Sep 2005 19:29:59 +0000 (12:29 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 21 Sep 2005 19:29:59 +0000 (12:29 -0700) |
Randal L. Schwartz noticed that 'make install' does not rebuild what
is installed. Make the 'install' rule depend on 'man'.
I noticed also 'touch' of the source files were used to express include
dependencies, which is a no-no. Rewrite it to do dependencies properly,
and add missing include dependencies while we are at it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
is installed. Make the 'install' rule depend on 'man'.
I noticed also 'touch' of the source files were used to express include
dependencies, which is a no-no. Rewrite it to do dependencies properly,
and add missing include dependencies while we are at it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/Makefile | patch | blob | history |
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 37b7fcb97d659fd25246af4c124030d22554fc99..01fad8ea5d0867fa32b03a0e9b77383201b6a41b 100644 (file)
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
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