Mercurial > p > roundup > code
annotate doc/Makefile @ 2409:096063697f77
merge
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 09 Jun 2004 00:25:32 +0000 |
| parents | f76d1642014a |
| children | 0357a9c93933 |
| rev | line source |
|---|---|
| 1560 | 1 STXTOHTML = rst2html |
| 2409 | 2 STXTOHT = rst2ht.py |
| 3 WEBDIR = ../../htdocs/htdocs/doc-0.7 | |
| 798 | 4 |
| 5 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ | |
|
1839
06f5b36b201b
Fix a couple of failures in mysql backend unit tests.
Richard Jones <richard@users.sourceforge.net>
parents:
1651
diff
changeset
|
6 glossary.txt implementation.txt index.txt design.txt mysql.txt \ |
|
2003
a291bf753037
maintenance -> admin guide
Richard Jones <richard@users.sourceforge.net>
parents:
1875
diff
changeset
|
7 installation.txt upgrading.txt user_guide.txt admin_guide.txt \ |
|
2138
f76d1642014a
doc cleanup, editing and creation of a What's New
Richard Jones <richard@users.sourceforge.net>
parents:
2133
diff
changeset
|
8 postgresql.txt tracker_templates.txt whatsnew-0.7.txt |
| 798 | 9 |
| 10 COMPILED := $(SOURCE:.txt=.html) | |
| 2409 | 11 WEBHT := $(SOURCE:.txt=.ht) |
| 798 | 12 |
| 2409 | 13 all: ${COMPILED} ${WEBHT} |
| 14 | |
| 15 website: ${WEBHT} | |
| 16 cp *.ht ${WEBDIR} | |
| 798 | 17 |
| 18 %.html: %.txt | |
|
1304
61ad556cfc8d
working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents:
1249
diff
changeset
|
19 ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 20 |
| 2409 | 21 %.ht: %.txt |
| 22 ${STXTOHT} --report=warning -d $< $@ | |
| 23 | |
| 1091 | 24 clean: |
| 25 rm -f ${COMPILED} |
