Mercurial > p > roundup > code
view doc/Makefile @ 1807:ea43cb3c157f
We need a stable set of chars to be able to match...
...the subject lines of registration confirmation. Py2.1's
string.letters also depends on locales, so we can't use it.
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Wed, 10 Sep 2003 13:04:05 +0000 |
| parents | 0bdcfc2a47ac |
| children | 06f5b36b201b |
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 \ installation.txt upgrading.txt user_guide.txt maintenance.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
