Mercurial > p > roundup > code
view doc/Makefile @ 2278:93bd8c4d43ef
in HTML produced by SeriousError.__str__():
remove misleading 'http-equiv' meta;
change stylesheet link from '_file/' to '@@file/'
for consistency with classic templates.
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Tue, 11 May 2004 13:03:07 +0000 |
| parents | f76d1642014a |
| children | e19284d8d2a4 096063697f77 |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = rst2html 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 whatsnew-0.7.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
