Documentation / Makefileon commit Merge branch 'nd/upload-pack-shallow-must-be-commit' (e43171a)
   1MAN1_TXT= \
   2        $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
   3                $(wildcard git-*.txt)) \
   4        gitk.txt gitweb.txt git.txt
   5MAN5_TXT=gitattributes.txt gitignore.txt gitmodules.txt githooks.txt \
   6        gitrepository-layout.txt gitweb.conf.txt
   7MAN7_TXT=gitcli.txt gittutorial.txt gittutorial-2.txt \
   8        gitcvs-migration.txt gitcore-tutorial.txt gitglossary.txt \
   9        gitdiffcore.txt gitnamespaces.txt gitrevisions.txt gitworkflows.txt
  10MAN7_TXT += gitcredentials.txt
  11
  12MAN_TXT = $(MAN1_TXT) $(MAN5_TXT) $(MAN7_TXT)
  13MAN_XML=$(patsubst %.txt,%.xml,$(MAN_TXT))
  14MAN_HTML=$(patsubst %.txt,%.html,$(MAN_TXT))
  15
  16DOC_HTML=$(MAN_HTML)
  17
  18ARTICLES = howto-index
  19ARTICLES += everyday
  20ARTICLES += git-tools
  21ARTICLES += git-bisect-lk2009
  22# with their own formatting rules.
  23SP_ARTICLES = user-manual
  24SP_ARTICLES += howto/new-command
  25SP_ARTICLES += howto/revert-branch-rebase
  26SP_ARTICLES += howto/using-merge-subtree
  27SP_ARTICLES += howto/using-signed-tag-in-pull-request
  28SP_ARTICLES += howto/use-git-daemon
  29SP_ARTICLES += howto/update-hook-example
  30SP_ARTICLES += howto/setup-git-server-over-http
  31SP_ARTICLES += howto/separating-topic-branches
  32SP_ARTICLES += howto/revert-a-faulty-merge
  33SP_ARTICLES += howto/recover-corrupted-blob-object
  34SP_ARTICLES += howto/rebuild-from-update-hook
  35SP_ARTICLES += howto/rebase-from-internal-branch
  36SP_ARTICLES += howto/maintain-git
  37API_DOCS = $(patsubst %.txt,%,$(filter-out technical/api-index-skel.txt technical/api-index.txt, $(wildcard technical/api-*.txt)))
  38SP_ARTICLES += $(API_DOCS)
  39
  40TECH_DOCS = technical/index-format
  41TECH_DOCS += technical/pack-format
  42TECH_DOCS += technical/pack-heuristics
  43TECH_DOCS += technical/pack-protocol
  44TECH_DOCS += technical/protocol-capabilities
  45TECH_DOCS += technical/protocol-common
  46TECH_DOCS += technical/racy-git
  47TECH_DOCS += technical/send-pack-pipeline
  48TECH_DOCS += technical/shallow
  49TECH_DOCS += technical/trivial-merge
  50SP_ARTICLES += $(TECH_DOCS)
  51SP_ARTICLES += technical/api-index
  52
  53DOC_HTML += $(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
  54
  55DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
  56DOC_MAN5=$(patsubst %.txt,%.5,$(MAN5_TXT))
  57DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
  58
  59prefix?=$(HOME)
  60bindir?=$(prefix)/bin
  61htmldir?=$(prefix)/share/doc/git-doc
  62pdfdir?=$(prefix)/share/doc/git-doc
  63mandir?=$(prefix)/share/man
  64man1dir=$(mandir)/man1
  65man5dir=$(mandir)/man5
  66man7dir=$(mandir)/man7
  67# DESTDIR=
  68
  69ASCIIDOC = asciidoc
  70ASCIIDOC_EXTRA =
  71MANPAGE_XSL = manpage-normal.xsl
  72XMLTO = xmlto
  73XMLTO_EXTRA =
  74INSTALL?=install
  75RM ?= rm -f
  76MAN_REPO = ../../git-manpages
  77HTML_REPO = ../../git-htmldocs
  78
  79infodir?=$(prefix)/share/info
  80MAKEINFO=makeinfo
  81INSTALL_INFO=install-info
  82DOCBOOK2X_TEXI=docbook2x-texi
  83DBLATEX=dblatex
  84ifndef PERL_PATH
  85        PERL_PATH = /usr/bin/perl
  86endif
  87
  88-include ../config.mak.autogen
  89-include ../config.mak
  90
  91#
  92# For docbook-xsl ...
  93#       -1.68.1,        no extra settings are needed?
  94#       1.69.0,         set ASCIIDOC_ROFF?
  95#       1.69.1-1.71.0,  set DOCBOOK_SUPPRESS_SP?
  96#       1.71.1,         set ASCIIDOC_ROFF?
  97#       1.72.0,         set DOCBOOK_XSL_172.
  98#       1.73.0-,        no extra settings are needed
  99#
 100
 101ifdef DOCBOOK_XSL_172
 102ASCIIDOC_EXTRA += -a git-asciidoc-no-roff
 103MANPAGE_XSL = manpage-1.72.xsl
 104else
 105        ifndef ASCIIDOC_ROFF
 106        # docbook-xsl after 1.72 needs the regular XSL, but will not
 107        # pass-thru raw roff codes from asciidoc.conf, so turn them off.
 108        ASCIIDOC_EXTRA += -a git-asciidoc-no-roff
 109        endif
 110endif
 111ifdef MAN_BOLD_LITERAL
 112XMLTO_EXTRA += -m manpage-bold-literal.xsl
 113endif
 114ifdef DOCBOOK_SUPPRESS_SP
 115XMLTO_EXTRA += -m manpage-suppress-sp.xsl
 116endif
 117
 118# Newer DocBook stylesheet emits warning cruft in the output when
 119# this is not set, and if set it shows an absolute link.  Older
 120# stylesheets simply ignore this parameter.
 121#
 122# Distros may want to use MAN_BASE_URL=file:///path/to/git/docs/
 123# or similar.
 124ifndef MAN_BASE_URL
 125MAN_BASE_URL = file://$(htmldir)/
 126endif
 127XMLTO_EXTRA += -m manpage-base-url.xsl
 128
 129# If your target system uses GNU groff, it may try to render
 130# apostrophes as a "pretty" apostrophe using unicode.  This breaks
 131# cut&paste, so you should set GNU_ROFF to force them to be ASCII
 132# apostrophes.  Unfortunately does not work with non-GNU roff.
 133ifdef GNU_ROFF
 134XMLTO_EXTRA += -m manpage-quote-apos.xsl
 135endif
 136
 137SHELL_PATH ?= $(SHELL)
 138# Shell quote;
 139SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
 140
 141ifdef DEFAULT_PAGER
 142DEFAULT_PAGER_SQ = $(subst ','\'',$(DEFAULT_PAGER))
 143ASCIIDOC_EXTRA += -a 'git-default-pager=$(DEFAULT_PAGER_SQ)'
 144endif
 145
 146ifdef DEFAULT_EDITOR
 147DEFAULT_EDITOR_SQ = $(subst ','\'',$(DEFAULT_EDITOR))
 148ASCIIDOC_EXTRA += -a 'git-default-editor=$(DEFAULT_EDITOR_SQ)'
 149endif
 150
 151QUIET_SUBDIR0  = +$(MAKE) -C # space to separate -C and subdir
 152QUIET_SUBDIR1  =
 153
 154ifneq ($(findstring $(MAKEFLAGS),w),w)
 155PRINT_DIR = --no-print-directory
 156else # "make -w"
 157NO_SUBDIR = :
 158endif
 159
 160ifneq ($(findstring $(MAKEFLAGS),s),s)
 161ifndef V
 162        QUIET_ASCIIDOC  = @echo '   ' ASCIIDOC $@;
 163        QUIET_XMLTO     = @echo '   ' XMLTO $@;
 164        QUIET_DB2TEXI   = @echo '   ' DB2TEXI $@;
 165        QUIET_MAKEINFO  = @echo '   ' MAKEINFO $@;
 166        QUIET_DBLATEX   = @echo '   ' DBLATEX $@;
 167        QUIET_XSLTPROC  = @echo '   ' XSLTPROC $@;
 168        QUIET_GEN       = @echo '   ' GEN $@;
 169        QUIET_STDERR    = 2> /dev/null
 170        QUIET_SUBDIR0   = +@subdir=
 171        QUIET_SUBDIR1   = ;$(NO_SUBDIR) echo '   ' SUBDIR $$subdir; \
 172                          $(MAKE) $(PRINT_DIR) -C $$subdir
 173        export V
 174endif
 175endif
 176
 177all: html man
 178
 179html: $(DOC_HTML)
 180
 181man: man1 man5 man7
 182man1: $(DOC_MAN1)
 183man5: $(DOC_MAN5)
 184man7: $(DOC_MAN7)
 185
 186info: git.info gitman.info
 187
 188pdf: user-manual.pdf
 189
 190install: install-man
 191
 192install-man: man
 193        $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir)
 194        $(INSTALL) -d -m 755 $(DESTDIR)$(man5dir)
 195        $(INSTALL) -d -m 755 $(DESTDIR)$(man7dir)
 196        $(INSTALL) -m 644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
 197        $(INSTALL) -m 644 $(DOC_MAN5) $(DESTDIR)$(man5dir)
 198        $(INSTALL) -m 644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
 199
 200install-info: info
 201        $(INSTALL) -d -m 755 $(DESTDIR)$(infodir)
 202        $(INSTALL) -m 644 git.info gitman.info $(DESTDIR)$(infodir)
 203        if test -r $(DESTDIR)$(infodir)/dir; then \
 204          $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) git.info ;\
 205          $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) gitman.info ;\
 206        else \
 207          echo "No directory found in $(DESTDIR)$(infodir)" >&2 ; \
 208        fi
 209
 210install-pdf: pdf
 211        $(INSTALL) -d -m 755 $(DESTDIR)$(pdfdir)
 212        $(INSTALL) -m 644 user-manual.pdf $(DESTDIR)$(pdfdir)
 213
 214install-html: html
 215        '$(SHELL_PATH_SQ)' ./install-webdoc.sh $(DESTDIR)$(htmldir)
 216
 217../GIT-VERSION-FILE: FORCE
 218        $(QUIET_SUBDIR0)../ $(QUIET_SUBDIR1) GIT-VERSION-FILE
 219
 220-include ../GIT-VERSION-FILE
 221
 222#
 223# Determine "include::" file references in asciidoc files.
 224#
 225doc.dep : $(wildcard *.txt) build-docdep.perl
 226        $(QUIET_GEN)$(RM) $@+ $@ && \
 227        $(PERL_PATH) ./build-docdep.perl >$@+ $(QUIET_STDERR) && \
 228        mv $@+ $@
 229
 230-include doc.dep
 231
 232cmds_txt = cmds-ancillaryinterrogators.txt \
 233        cmds-ancillarymanipulators.txt \
 234        cmds-mainporcelain.txt \
 235        cmds-plumbinginterrogators.txt \
 236        cmds-plumbingmanipulators.txt \
 237        cmds-synchingrepositories.txt \
 238        cmds-synchelpers.txt \
 239        cmds-purehelpers.txt \
 240        cmds-foreignscminterface.txt
 241
 242$(cmds_txt): cmd-list.made
 243
 244cmd-list.made: cmd-list.perl ../command-list.txt $(MAN1_TXT)
 245        $(QUIET_GEN)$(RM) $@ && \
 246        $(PERL_PATH) ./cmd-list.perl ../command-list.txt $(QUIET_STDERR) && \
 247        date >$@
 248
 249clean:
 250        $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7
 251        $(RM) *.texi *.texi+ *.texi++ git.info gitman.info
 252        $(RM) *.pdf
 253        $(RM) howto-index.txt howto/*.html doc.dep
 254        $(RM) technical/*.html technical/api-index.txt
 255        $(RM) $(cmds_txt) *.made
 256        $(RM) manpage-base-url.xsl
 257
 258$(MAN_HTML): %.html : %.txt asciidoc.conf
 259        $(QUIET_ASCIIDOC)$(RM) $@+ $@ && \
 260        $(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
 261                $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $< && \
 262        mv $@+ $@
 263
 264manpage-base-url.xsl: manpage-base-url.xsl.in
 265        sed "s|@@MAN_BASE_URL@@|$(MAN_BASE_URL)|" $< > $@
 266
 267%.1 %.5 %.7 : %.xml manpage-base-url.xsl
 268        $(QUIET_XMLTO)$(RM) $@ && \
 269        $(XMLTO) -m $(MANPAGE_XSL) $(XMLTO_EXTRA) man $<
 270
 271%.xml : %.txt asciidoc.conf
 272        $(QUIET_ASCIIDOC)$(RM) $@+ $@ && \
 273        $(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
 274                $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) -o $@+ $< && \
 275        mv $@+ $@
 276
 277user-manual.xml: user-manual.txt user-manual.conf
 278        $(QUIET_ASCIIDOC)$(RM) $@+ $@ && \
 279        $(ASCIIDOC) $(ASCIIDOC_EXTRA) -b docbook -d book -o $@+ $< && \
 280        mv $@+ $@
 281
 282technical/api-index.txt: technical/api-index-skel.txt \
 283        technical/api-index.sh $(patsubst %,%.txt,$(API_DOCS))
 284        $(QUIET_GEN)cd technical && '$(SHELL_PATH_SQ)' ./api-index.sh
 285
 286technical/%.html: ASCIIDOC_EXTRA += -a git-relative-html-prefix=../
 287$(patsubst %,%.html,$(API_DOCS) technical/api-index $(TECH_DOCS)): %.html : %.txt asciidoc.conf
 288        $(QUIET_ASCIIDOC)$(ASCIIDOC) -b xhtml11 -f asciidoc.conf \
 289                $(ASCIIDOC_EXTRA) -agit_version=$(GIT_VERSION) $*.txt
 290
 291XSLT = docbook.xsl
 292XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
 293
 294user-manual.html: user-manual.xml $(XSLT)
 295        $(QUIET_XSLTPROC)$(RM) $@+ $@ && \
 296        xsltproc $(XSLTOPTS) -o $@+ $(XSLT) $< && \
 297        mv $@+ $@
 298
 299git.info: user-manual.texi
 300        $(QUIET_MAKEINFO)$(MAKEINFO) --no-split -o $@ user-manual.texi
 301
 302user-manual.texi: user-manual.xml
 303        $(QUIET_DB2TEXI)$(RM) $@+ $@ && \
 304        $(DOCBOOK2X_TEXI) user-manual.xml --encoding=UTF-8 --to-stdout >$@++ && \
 305        $(PERL_PATH) fix-texi.perl <$@++ >$@+ && \
 306        rm $@++ && \
 307        mv $@+ $@
 308
 309user-manual.pdf: user-manual.xml
 310        $(QUIET_DBLATEX)$(RM) $@+ $@ && \
 311        $(DBLATEX) -o $@+ -p /etc/asciidoc/dblatex/asciidoc-dblatex.xsl -s /etc/asciidoc/dblatex/asciidoc-dblatex.sty $< && \
 312        mv $@+ $@
 313
 314gitman.texi: $(MAN_XML) cat-texi.perl
 315        $(QUIET_DB2TEXI)$(RM) $@+ $@ && \
 316        ($(foreach xml,$(MAN_XML),$(DOCBOOK2X_TEXI) --encoding=UTF-8 \
 317                --to-stdout $(xml) &&) true) > $@++ && \
 318        $(PERL_PATH) cat-texi.perl $@ <$@++ >$@+ && \
 319        rm $@++ && \
 320        mv $@+ $@
 321
 322gitman.info: gitman.texi
 323        $(QUIET_MAKEINFO)$(MAKEINFO) --no-split --no-validate $*.texi
 324
 325$(patsubst %.txt,%.texi,$(MAN_TXT)): %.texi : %.xml
 326        $(QUIET_DB2TEXI)$(RM) $@+ $@ && \
 327        $(DOCBOOK2X_TEXI) --to-stdout $*.xml >$@+ && \
 328        mv $@+ $@
 329
 330howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
 331        $(QUIET_GEN)$(RM) $@+ $@ && \
 332        '$(SHELL_PATH_SQ)' ./howto-index.sh $(sort $(wildcard howto/*.txt)) >$@+ && \
 333        mv $@+ $@
 334
 335$(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
 336        $(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_EXTRA) -b xhtml11 $*.txt
 337
 338WEBDOC_DEST = /pub/software/scm/git/docs
 339
 340howto/%.html: ASCIIDOC_EXTRA += -a git-relative-html-prefix=../
 341$(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
 342        $(QUIET_ASCIIDOC)$(RM) $@+ $@ && \
 343        sed -e '1,/^$$/d' $< | $(ASCIIDOC) $(ASCIIDOC_EXTRA) -b xhtml11 - >$@+ && \
 344        mv $@+ $@
 345
 346install-webdoc : html
 347        '$(SHELL_PATH_SQ)' ./install-webdoc.sh $(WEBDOC_DEST)
 348
 349# You must have a clone of git-htmldocs and git-manpages repositories
 350# next to the git repository itself for the following to work.
 351
 352quick-install: quick-install-man
 353
 354require-manrepo::
 355        @if test ! -d $(MAN_REPO); \
 356        then echo "git-manpages repository must exist at $(MAN_REPO)"; exit 1; fi
 357
 358quick-install-man: require-manrepo
 359        '$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(MAN_REPO) $(DESTDIR)$(mandir)
 360
 361require-htmlrepo::
 362        @if test ! -d $(HTML_REPO); \
 363        then echo "git-htmldocs repository must exist at $(HTML_REPO)"; exit 1; fi
 364
 365quick-install-html: require-htmlrepo
 366        '$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(HTML_REPO) $(DESTDIR)$(htmldir)
 367
 368print-man1:
 369        @for i in $(MAN1_TXT); do echo $$i; done
 370
 371.PHONY: FORCE