Mercurial > p > roundup > code
view doc/Makefile @ 1877:13b95c9936fc
Fix some attributes.
Note that this causes the test to fail with an error, while it just
wouldn't run before.
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Sun, 26 Oct 2003 14:43:51 +0000 |
| parents | 3ffb7b56172a |
| children | a291bf753037 |
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 maintenance.txt \ postgresql.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
