X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=doc%2FMakefile;h=e17fbd9b8f8a4806f83bad82f2cceede3af560e3;hb=1d2361aba006cdd3fd144032a19de1d01467770e;hp=987dfe7071249eaccb6ccda635c58dea3b3599e5;hpb=00fff27257d55a1f7b2fc6daaa6e1fb037e8fb91;p=roundup.git diff --git a/doc/Makefile b/doc/Makefile index 987dfe7..e17fbd9 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,17 +1,17 @@ PYTHON = /usr/bin/python2 -STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')" +STXTOHTML = rst2html SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ - glossary.txt implementation.txt index.txt design.txt \ - installation.txt security.txt upgrading.txt user_guide.txt \ - maintenance.txt + glossary.txt implementation.txt index.txt design.txt mysql.txt \ + installation.txt upgrading.txt user_guide.txt admin_guide.txt \ + postgresql.txt tracker_templates.txt whatsnew-0.7.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt - ${PYTHON} ${STXTOHTML} --report=warning -d $< $@ + ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}