Mercurial > p > roundup > code
view doc/Makefile @ 1120:c26471971d18
Exposed the Batch mechanism through the top-level "utils" variable.
See the keyword.item template for an example of how it can be used.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 11 Sep 2002 23:54:26 +0000 |
| parents | d870139aeb5c |
| children | 4c9882cb16a3 |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')" SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ getting_started.txt glossary.txt implementation.txt index.txt \ installation.txt security.txt upgrading.txt user_guide.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${PYTHON} ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
