Documentation / Makefileon commit git-clone: always keep pack sent from remote (documentation). (76e712f)
   1MAN1_TXT=$(wildcard git-*.txt) gitk.txt
   2MAN7_TXT=git.txt
   3
   4DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN7_TXT))
   5
   6ARTICLES = tutorial
   7ARTICLES += cvs-migration
   8ARTICLES += diffcore
   9ARTICLES += howto-index
  10ARTICLES += repository-layout
  11ARTICLES += hooks
  12# with their own formatting rules.
  13SP_ARTICLES = glossary howto/revert-branch-rebase
  14
  15DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
  16
  17DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
  18DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
  19
  20prefix?=$(HOME)
  21bin=$(prefix)/bin
  22mandir=$(prefix)/man
  23man1=$(mandir)/man1
  24man7=$(mandir)/man7
  25# DESTDIR=
  26
  27INSTALL?=install
  28
  29#
  30# Please note that there is a minor bug in asciidoc.
  31# The version after 6.0.3 _will_ include the patch found here:
  32#   http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
  33#
  34# Until that version is released you may have to apply the patch
  35# yourself - yes, all 6 characters of it!
  36#
  37
  38all: html man
  39
  40html: $(DOC_HTML)
  41
  42
  43man: man1 man7
  44man1: $(DOC_MAN1)
  45man7: $(DOC_MAN7)
  46
  47install: man
  48        $(INSTALL) -d -m755 $(DESTDIR)/$(man1) $(DESTDIR)/$(man7)
  49        $(INSTALL) $(DOC_MAN1) $(DESTDIR)/$(man1)
  50        $(INSTALL) $(DOC_MAN7) $(DESTDIR)/$(man7)
  51
  52# 'include' dependencies
  53$(patsubst %.txt,%.1,$(wildcard git-diff-*.txt)): \
  54        diff-format.txt diff-options.txt
  55$(patsubst %,%.1,git-fetch git-pull git-push): pull-fetch-param.txt
  56$(patsubst %.txt,%.html,$(wildcard git-diff-*.txt)): \
  57        diff-format.txt diff-options.txt
  58$(patsubst %,%.html,git-fetch git-pull git-push): pull-fetch-param.txt
  59git.7: ../README
  60
  61clean:
  62        rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html
  63
  64%.html : %.txt
  65        asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
  66
  67%.1 %.7 : %.xml
  68        xmlto man $<
  69
  70%.xml : %.txt
  71        asciidoc -b docbook -d manpage -f asciidoc.conf $<
  72
  73git.html: git.txt ../README
  74
  75glossary.html : glossary.txt sort_glossary.pl
  76        cat $< | \
  77        perl sort_glossary.pl | \
  78        asciidoc -b xhtml11 - > glossary.html
  79
  80howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
  81        rm -f $@+ $@
  82        sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
  83        mv $@+ $@
  84
  85$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
  86        asciidoc -b xhtml11 $*.txt
  87
  88WEBDOC_DEST = /pub/software/scm/git/docs
  89
  90$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
  91        rm -f $@+ $@
  92        sed -e '1,/^$$/d' $? | asciidoc -b xhtml11 - >$@+
  93        mv $@+ $@
  94
  95install-webdoc : html
  96        sh ./install-webdoc.sh $(WEBDOC_DEST)