Mercurial > p > roundup > code
view doc/Makefile @ 4502:4b79cf4bd831
Improved wording on the mailgw file-unlink defect:
+ Added missing information when the defect was introduced
+ Language more neutral about the description and fix.
| author | Bernhard Reiter <Bernhard.Reiter@intevation.de> |
|---|---|
| date | Mon, 30 May 2011 09:09:40 +0000 |
| parents | 6ec048310de7 |
| children | b59ba4dda623 |
line wrap: on
line source
STXTOHTML = rst2html.py STXTOHT = rst2ht.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 ht html: ${COMPILED} ht: ${WEBHT} website: ${WEBHT} cp *.ht ${WEBDIR} cp -r images ${WEBDIR} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ %.ht: %.txt ${STXTOHT} --report=warning -d $< $@ clean: rm -f ${COMPILED}
