Mercurial > p > roundup > code
annotate doc/Makefile @ 1243:3a028d2f7830
Fix (re)indexing & find in back_metakit.
Fix testTransactions in the metakit test in test_db.
| author | Gordon B. McMillan <gmcm@users.sourceforge.net> |
|---|---|
| date | Wed, 02 Oct 2002 19:15:46 +0000 |
| parents | 4c9882cb16a3 |
| children | 8dd4f736370b |
| 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 \ | |
|
1218
4c9882cb16a3
more docco work
Richard Jones <richard@users.sourceforge.net>
parents:
1091
diff
changeset
|
6 installation.txt security.txt upgrading.txt user_guide.txt \ |
|
4c9882cb16a3
more docco work
Richard Jones <richard@users.sourceforge.net>
parents:
1091
diff
changeset
|
7 maintenance.txt |
| 798 | 8 |
| 9 COMPILED := $(SOURCE:.txt=.html) | |
| 10 | |
| 11 all: ${COMPILED} | |
| 12 | |
| 13 %.html: %.txt | |
| 979 | 14 ${PYTHON} ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 15 |
| 1091 | 16 clean: |
| 17 rm -f ${COMPILED} |
