Code

doc cleanup, editing and creation of a What's New
[roundup.git] / doc / Makefile
1 PYTHON = /usr/bin/python2
2 STXTOHTML = rst2html
4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
5     glossary.txt implementation.txt index.txt design.txt mysql.txt \
6     installation.txt upgrading.txt user_guide.txt admin_guide.txt \
7         postgresql.txt tracker_templates.txt whatsnew-0.7.txt
9 COMPILED := $(SOURCE:.txt=.html)
11 all: ${COMPILED}
13 %.html: %.txt
14         ${STXTOHTML} --report=warning -d $< $@
16 clean:
17         rm -f ${COMPILED}