Documentation / Makefileon commit gitweb: Update and improve gitweb/README file (61fd255)
   1MAN1_TXT= \
   2        $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
   3                $(wildcard git-*.txt)) \
   4        gitk.txt
   5MAN5_TXT=gitattributes.txt gitignore.txt gitmodules.txt
   6MAN7_TXT=git.txt
   7
   8DOC_HTML=$(patsubst %.txt,%.html,$(MAN1_TXT) $(MAN5_TXT) $(MAN7_TXT))
   9
  10ARTICLES = tutorial
  11ARTICLES += tutorial-2
  12ARTICLES += core-tutorial
  13ARTICLES += cvs-migration
  14ARTICLES += diffcore
  15ARTICLES += howto-index
  16ARTICLES += repository-layout
  17ARTICLES += hooks
  18ARTICLES += everyday
  19ARTICLES += git-tools
  20ARTICLES += glossary
  21# with their own formatting rules.
  22SP_ARTICLES = howto/revert-branch-rebase user-manual
  23
  24DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
  25
  26DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
  27DOC_MAN5=$(patsubst %.txt,%.5,$(MAN5_TXT))
  28DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
  29
  30prefix?=$(HOME)
  31bindir?=$(prefix)/bin
  32mandir?=$(prefix)/share/man
  33man1dir=$(mandir)/man1
  34man5dir=$(mandir)/man5
  35man7dir=$(mandir)/man7
  36# DESTDIR=
  37
  38ASCIIDOC=asciidoc
  39ASCIIDOC_EXTRA =
  40INSTALL?=install
  41RM ?= rm -f
  42DOC_REF = origin/man
  43
  44infodir?=$(prefix)/share/info
  45MAKEINFO=makeinfo
  46INSTALL_INFO=install-info
  47DOCBOOK2X_TEXI=docbook2x-texi
  48
  49-include ../config.mak.autogen
  50-include ../config.mak
  51
  52ifdef ASCIIDOC8
  53ASCIIDOC_EXTRA += -a asciidoc7compatible
  54endif
  55ifdef DOCBOOK_XSL_172
  56ASCIIDOC_EXTRA += -a docbook-xsl-172
  57endif
  58
  59#
  60# Please note that there is a minor bug in asciidoc.
  61# The version after 6.0.3 _will_ include the patch found here:
  62#   http://marc.theaimsgroup.com/?l=git&m=111558757202243&w=2
  63#
  64# Until that version is released you may have to apply the patch
  65# yourself - yes, all 6 characters of it!
  66#
  67
  68all: html man
  69
  70html: $(DOC_HTML)
  71
  72$(DOC_HTML) $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN7): asciidoc.conf
  73
  74man: man1 man5 man7
  75man1: $(DOC_MAN1)
  76man5: $(DOC_MAN5)
  77man7: $(DOC_MAN7)
  78
  79info: git.info
  80
  81install: man
  82        $(INSTALL) -d -m755 $(DESTDIR)$(man1dir)
  83        $(INSTALL) -d -m755 $(DESTDIR)$(man5dir)
  84        $(INSTALL) -d -m755 $(DESTDIR)$(man7dir)
  85        $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
  86        $(INSTALL) -m644 $(DOC_MAN5) $(DESTDIR)$(man5dir)
  87        $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
  88
  89install-info: info
  90        $(INSTALL) -d -m755 $(DESTDIR)$(infodir)
  91        $(INSTALL) -m644 git.info $(DESTDIR)$(infodir)
  92        if test -r $(DESTDIR)$(infodir)/dir; then \
  93          $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) git.info ;\
  94        else \
  95          echo "No directory found in $(DESTDIR)$(infodir)" >&2 ; \
  96        fi
  97
  98../GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
  99        $(MAKE) -C ../ GIT-VERSION-FILE
 100
 101-include ../GIT-VERSION-FILE
 102
 103#
 104# Determine "include::" file references in asciidoc files.
 105#
 106doc.dep : $(wildcard *.txt) build-docdep.perl
 107        $(RM) $@+ $@
 108        perl ./build-docdep.perl >$@+
 109        mv $@+ $@
 110
 111-include doc.dep
 112
 113cmds_txt = cmds-ancillaryinterrogators.txt \
 114        cmds-ancillarymanipulators.txt \
 115        cmds-mainporcelain.txt \
 116        cmds-plumbinginterrogators.txt \
 117        cmds-plumbingmanipulators.txt \
 118        cmds-synchingrepositories.txt \
 119        cmds-synchelpers.txt \
 120        cmds-purehelpers.txt \
 121        cmds-foreignscminterface.txt
 122
 123$(cmds_txt): cmd-list.made
 124
 125cmd-list.made: cmd-list.perl ../command-list.txt $(MAN1_TXT)
 126        $(RM) $@
 127        perl ./cmd-list.perl ../command-list.txt
 128        date >$@
 129
 130git.7 git.html: git.txt
 131
 132clean:
 133        $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7 *.texi *.texi+ howto-index.txt howto/*.html doc.dep
 134        $(RM) $(cmds_txt) *.made
 135
 136%.html : %.txt
 137        $(RM) $@+ $@
 138        $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
 139                $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
 140        mv $@+ $@
 141
 142%.1 %.5 %.7 : %.xml
 143        $(RM) $@
 144        xmlto -m callouts.xsl man $<
 145
 146%.xml : %.txt
 147        $(RM) $@+ $@
 148        $(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
 149                $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $<
 150        mv $@+ $@
 151
 152user-manual.xml: user-manual.txt user-manual.conf
 153        $(ASCIIDOC) -b docbook -d book $<
 154
 155XSLT = docbook.xsl
 156XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
 157
 158user-manual.html: user-manual.xml
 159        xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
 160
 161git.info: user-manual.xml
 162        $(RM) $@ $*.texi $*.texi+
 163        $(DOCBOOK2X_TEXI) user-manual.xml --to-stdout >$*.texi+
 164        perl fix-texi.perl <$*.texi+ >$*.texi
 165        $(MAKEINFO) --no-split $*.texi
 166        $(RM) $*.texi $*.texi+
 167
 168howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
 169        $(RM) $@+ $@
 170        sh ./howto-index.sh $(wildcard howto/*.txt) >$@+
 171        mv $@+ $@
 172
 173$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
 174        $(ASCIIDOC) -b xhtml11 $*.txt
 175
 176WEBDOC_DEST = /pub/software/scm/git/docs
 177
 178$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
 179        $(RM) $@+ $@
 180        sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+
 181        mv $@+ $@
 182
 183install-webdoc : html
 184        sh ./install-webdoc.sh $(WEBDOC_DEST)
 185
 186quick-install:
 187        sh ./install-doc-quick.sh $(DOC_REF) $(mandir)
 188
 189.PHONY: .FORCE-GIT-VERSION-FILE