Code

- fixed filter() with no sort/group (sf bug 618614)
[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     glossary.txt implementation.txt index.txt design.txt \
6     installation.txt upgrading.txt user_guide.txt maintenance.txt
8 COMPILED := $(SOURCE:.txt=.html)
10 all: ${COMPILED}
12 %.html: %.txt
13         ${PYTHON} ${STXTOHTML} --report=warning -d $< $@
15 clean:
16         rm -f ${COMPILED}