Mercurial > p > roundup > code
comparison doc/Makefile @ 798:faf164ab8ed9
Docco changes.
New docco build system using the New Improved tool supplied with docutils.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 24 Jun 2002 23:06:58 +0000 |
| parents | |
| children | b0d3d3535998 |
comparison
equal
deleted
inserted
replaced
| 797:5a5cea3a432c | 798:faf164ab8ed9 |
|---|---|
| 1 PYTHON = /usr/bin/python2 | |
| 2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')" | |
| 3 | |
| 4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ | |
| 5 getting_started.txt glossary.txt implementation.txt index.txt \ | |
| 6 installation.txt security.txt upgrading.txt user_guide.txt | |
| 7 | |
| 8 COMPILED := $(SOURCE:.txt=.html) | |
| 9 | |
| 10 all: ${COMPILED} | |
| 11 | |
| 12 %.html: %.txt | |
| 13 ${PYTHON} ${STXTOHTML} -d -v $< $@ | |
| 14 |
