Code

1f22b0ea466fba622ec2345c470e1f49fc61360b
[roundup.git] / doc / Makefile
1 PYTHON = /usr/bin/python2
2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')"
4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
5     getting_started.txt glossary.txt implementation.txt index.txt \
6     installation.txt security.txt upgrading.txt user_guide.txt
8 COMPILED := $(SOURCE:.txt=.html)
10 all: ${COMPILED}
12 %.html: %.txt
13         ${PYTHON} ${STXTOHTML} -d -v $< $@