sapling/doc/Makefile

48 lines
987 B
Makefile
Raw Normal View History

SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
2006-05-09 19:05:49 +04:00
PREFIX=/usr/local
MANDIR=$(PREFIX)/share/man
2006-05-09 19:05:49 +04:00
INSTALL=install -c
PYTHON=python
all: man html
man: $(MAN)
html: $(HTML)
hg.1.txt: hg.1.gendoc.txt
touch hg.1.txt
hg.1.gendoc.txt: ../mercurial/commands.py ../mercurial/help.py
${PYTHON} gendoc.py > $@
%: %.xml
xmlto man $*.xml ; \
sed -e 's/^\.hg/\\\&.hg/' $* > $*~ ; \
mv $*~ $*
%.xml: %.txt
asciidoc -d manpage -b docbook $*.txt
%.html: %.txt
asciidoc -b html4 $*.txt || asciidoc -b html $*.txt
2006-12-12 13:39:05 +03:00
MANIFEST: man html
2008-08-28 15:06:24 +04:00
# tracked files are already in the main MANIFEST
2006-12-12 13:39:05 +03:00
$(RM) $@
for i in $(MAN) $(HTML) hg.1.gendoc.txt; do \
2006-12-12 13:39:05 +03:00
echo "doc/$$i" >> $@ ; \
done
2006-05-09 19:05:49 +04:00
install: man
for i in $(MAN) ; do \
subdir=`echo $$i | sed -n 's/..*\.\([0-9]\)$$/man\1/p'` ; \
mkdir -p $(DESTDIR)$(MANDIR)/$$subdir ; \
$(INSTALL) $$i $(DESTDIR)$(MANDIR)/$$subdir ; \
2006-05-09 19:05:49 +04:00
done
clean:
2006-12-12 13:39:05 +03:00
$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html) *.[0-9].gendoc.txt MANIFEST