Mercurial > p > roundup > code
view doc/Makefile @ 2316:f8a4c51e5847
distutils.log is not available on Python 2.2 and below...
...use Command.announce instead.
allow to specify unusual Python tools directory
in build command options.
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sun, 16 May 2004 09:23:18 +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}
