Mercurial > p > roundup > code
annotate doc/Makefile @ 922:db51fd9bd823
*** empty log message ***
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 30 Jul 2002 21:38:20 +0000 |
| parents | b0d3d3535998 |
| children | f36ffa50374f |
| rev | line source |
|---|---|
| 798 | 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 | |
|
902
b0d3d3535998
Bugger it. Here's the current shape of the new security implementation.
Richard Jones <richard@users.sourceforge.net>
parents:
798
diff
changeset
|
13 ${PYTHON} ${STXTOHTML} -d $< $@ |
| 798 | 14 |
