##// END OF EJS Templates
doc: wrap man pages after fixing quoting
doc: wrap man pages after fixing quoting

File last commit:

r8311:e0eb03bf default
r8782:d19ab9a5 default
Show More
Makefile
48 lines | 1023 B | text/x-makefile | MakefileLexer
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
wilde@trapperkeeper.sha-bang.de
Added install target.
r2233 PREFIX=/usr/local
Jonathan Smith <https://issues.rpath.com/>
install man pages by default into $(PREFIX)/share/man not $(PREFIX)/man since the FHS puts them there
r4030 MANDIR=$(PREFIX)/share/man
Christian Ebert
Do not install executable man pages...
r7686 INSTALL=install -c -m 644
Dirkjan Ochtman
use ${PYTHON} var in doc/Makefile as well
r6724 PYTHON=python
Patrick Mezard
Document how HTML documentation is built under Windows
r7660 ASCIIDOC=asciidoc
mpm@selenic.com
Add a doc makefile...
r465
Thomas Arendsen Hein
Generate html documentation by default, too.
r1006 all: man html
mpm@selenic.com
Add a doc makefile...
r465
man: $(MAN)
html: $(HTML)
Benoit Boissinot
generate hg manpage from commands.py docstring...
r1814 hg.1.txt: hg.1.gendoc.txt
touch hg.1.txt
Thomas Arendsen Hein
Regenerate hg.1 manpage if help text in help.py changes.
r3907 hg.1.gendoc.txt: ../mercurial/commands.py ../mercurial/help.py
Dirkjan Ochtman
use ${PYTHON} var in doc/Makefile as well
r6724 ${PYTHON} gendoc.py > $@
Benoit Boissinot
generate hg manpage from commands.py docstring...
r1814
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %: %.xml
Giorgos Keramidas
manpage build: fail early when xmlto is not available...
r8311 xmlto man $*.xml && \
sed -e 's/^\.hg/\\\&.hg/' $* > $*~ && \
Christian Ebert
doc: escape .hg at bol in manpages with make (issue1072)...
r6486 mv $*~ $*
mpm@selenic.com
Add a doc makefile...
r465
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %.xml: %.txt
Patrick Mezard
Document how HTML documentation is built under Windows
r7660 $(ASCIIDOC) -d manpage -b docbook $*.txt
mpm@selenic.com
Add a doc makefile...
r465
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %.html: %.txt
Patrick Mezard
Document how HTML documentation is built under Windows
r7660 $(ASCIIDOC) -b html4 $*.txt || $(ASCIIDOC) -b html $*.txt
mpm@selenic.com
Add a doc makefile...
r465
Benoit Boissinot
fix MANIFEST generation
r3872 MANIFEST: man html
Christian Ebert
doc/Makefile: rephrase comment (typo)
r6943 # tracked files are already in the main MANIFEST
Benoit Boissinot
fix MANIFEST generation
r3872 $(RM) $@
Thomas Arendsen Hein
Include hg.1.gendoc.txt in doc/MANIFEST to prevent unnecessary rebuild.
r3908 for i in $(MAN) $(HTML) hg.1.gendoc.txt; do \
Benoit Boissinot
fix MANIFEST generation
r3872 echo "doc/$$i" >> $@ ; \
done
wilde@trapperkeeper.sha-bang.de
Added install target.
r2233 install: man
for i in $(MAN) ; do \
Thomas Arendsen Hein
Some versions of sed don't support .\+, so use ..* instead....
r3269 subdir=`echo $$i | sed -n 's/..*\.\([0-9]\)$$/man\1/p'` ; \
Adam Spiers
mercurial.spec: include CONTRIBUTORS, COPYING and man pages in rpm
r4753 mkdir -p $(DESTDIR)$(MANDIR)/$$subdir ; \
$(INSTALL) $$i $(DESTDIR)$(MANDIR)/$$subdir ; \
wilde@trapperkeeper.sha-bang.de
Added install target.
r2233 done
mpm@selenic.com
Add a doc makefile...
r465 clean:
Benoit Boissinot
fix MANIFEST generation
r3872 $(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html) *.[0-9].gendoc.txt MANIFEST