summaryrefslogtreecommitdiff
path: root/Documentation/Makefile
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2005-08-18 15:28:57 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-08-18 17:25:52 (GMT)
commit23bb8df2fb334368b6bd36908d13877cf6eae219 (patch)
treee2370843068fd8b45380f1c4ecef3036887d4b5e /Documentation/Makefile
parent379955c696a417f0fb6118f2fd91dbffd2816ad1 (diff)
downloadgit-23bb8df2fb334368b6bd36908d13877cf6eae219.zip
git-23bb8df2fb334368b6bd36908d13877cf6eae219.tar.gz
git-23bb8df2fb334368b6bd36908d13877cf6eae219.tar.bz2
[PATCH] Add Makefile target glossary.html
This also includes a script which does the sorting, and introduces hyperlinks for every described term. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r--Documentation/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 3365784..7fad5ba 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -1,7 +1,7 @@
MAN1_TXT=$(wildcard git-*.txt)
MAN7_TXT=git.txt
-DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
+DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT)) glossary.html
DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
@@ -54,3 +54,8 @@ clean:
%.xml : %.txt
asciidoc -b docbook -d manpage $<
+glossary.html : glossary.txt sort_glossary.pl
+ cat $< | \
+ perl sort_glossary.pl | \
+ asciidoc -b xhtml11 - > glossary.html
+