Mercurial > p > roundup > code
view doc/Makefile @ 4582:753a379c0303
Fix syntax errors in doc/upgrading.txt and .gitignore
doc/upgrading.txt produced errors with latest docutils about
wrong block structure. Thanks to Cheer Xiao for the patches.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Thu, 26 Jan 2012 15:30:44 +0100 |
| parents | b59ba4dda623 |
| children |
line wrap: on
line source
STXTOHTML = rst2html.py WEBDIR = ../../htdocs/htdocs/doc-1.0 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.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 xmlrpc.txt COMPILED := $(SOURCE:.txt=.html) WEBHT := $(SOURCE:.txt=.ht) all: html html: ${COMPILED} website: ${WEBHT} cp *.ht ${WEBDIR} cp -r images ${WEBDIR} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
