Mercurial > p > roundup > code
view doc/Makefile @ 1294:3a38af77b87c
force non-word boundary to match re: in subject [SF#626303]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 21 Oct 2002 22:03:09 +0000 |
| parents | 6c24a86a12ae |
| children | 61ad556cfc8d |
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 \ 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 ${PYTHON} ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
