diff options
author | Junio C Hamano <junkio@cox.net> | 2007-02-13 15:15:05 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-13 15:15:05 -0800 |
commit | 26cfcfbff451a67412d2570759250a7418f648d2 (patch) | |
tree | 23ba65c82558910e3f4ea537bf8c872084118aa0 /Documentation/Makefile | |
parent | Merge branch 'master' of git://repo.or.cz/git-gui (diff) | |
download | tgif-26cfcfbff451a67412d2570759250a7418f648d2.tar.xz |
Add release notes to the distribution.
This also adds a hook in the Makefile I can use to automatically
include pointers to documentation for older releases when updating
the pages at http://kernel.org/pub/software/scm/git/docs/.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index aaf95918c3..9e7f2a7880 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -32,6 +32,7 @@ man7dir=$(mandir)/man7 # DESTDIR= ASCIIDOC=asciidoc +ASCIIDOC_EXTRA = INSTALL?=install DOC_REF = origin/man @@ -92,7 +93,7 @@ clean: rm -f $(cmds_txt) %.html : %.txt - $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf $< + $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf $(ASCIIDOC_EXTRA) $< %.1 %.7 : %.xml xmlto -m callouts.xsl man $< |