Mercurial > p > roundup > code
annotate doc/Makefile @ 3189:bbe57087e22b maint-0.8
*** empty log message ***
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 15 Feb 2005 23:49:05 +0000 |
| parents | 5c0e5abcb5e3 |
| children | 7a3e791b2b2b 9b99fff18683 |
| rev | line source |
|---|---|
| 2910 | 1 STXTOHTML = rst2html.py |
| 2409 | 2 STXTOHT = rst2ht.py |
|
2858
0357a9c93933
fix filter() doc
Richard Jones <richard@users.sourceforge.net>
parents:
2409
diff
changeset
|
3 WEBDIR = ../../htdocs/htdocs/doc-0.8 |
| 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 \ |
|
2858
0357a9c93933
fix filter() doc
Richard Jones <richard@users.sourceforge.net>
parents:
2409
diff
changeset
|
8 postgresql.txt tracker_templates.txt whatsnew-0.8.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} |
