sapling/doc/Makefile

50 lines
1.1 KiB
Makefile
Raw Normal View History

SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
GENDOC=gendoc.py ../mercurial/commands.py ../mercurial/help.py ../mercurial/help/*.txt
2006-05-09 19:05:49 +04:00
PREFIX=/usr/local
MANDIR=$(PREFIX)/share/man
INSTALL=install -c -m 644
PYTHON=python
export LANGUAGE=C
export LC_ALL=C
all: man html
man: $(MAN)
html: $(HTML)
hg.1.txt: hg.1.gendoc.txt
touch hg.1.txt
hg.1.gendoc.txt: $(GENDOC)
${PYTHON} gendoc.py > $@.tmp
mv $@.tmp $@
2009-07-17 01:25:26 +04:00
%: %.txt common.txt
$(PYTHON) runrst manpage --halt warning \
--strip-elements-with-class htmlonly $*.txt $*
2009-07-17 01:25:26 +04:00
%.html: %.txt common.txt
$(PYTHON) runrst html --halt warning \
--link-stylesheet --stylesheet-path style.css $*.txt $*.html
2006-12-12 13:39:05 +03:00
MANIFEST: man html
# 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:
$(RM) $(MAN) $(MAN:%=%.html) *.[0-9].gendoc.txt MANIFEST