Mercurial > p > roundup > code
annotate doc/Makefile @ 3969:905faf52a51f 1.4.3
fix mysql breakage in 1.4.2
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 27 Feb 2008 08:32:51 +0000 |
| parents | 257b4eab3bb2 |
| children | 6ec048310de7 |
| rev | line source |
|---|---|
|
3650
77e067e64035
copy over status/priority descriptions from old overview doc
Richard Jones <richard@users.sourceforge.net>
parents:
3526
diff
changeset
|
1 STXTOHTML = rst2html |
| 2409 | 2 STXTOHT = rst2ht.py |
|
3526
9b99fff18683
*** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents:
2910
diff
changeset
|
3 WEBDIR = ../../htdocs/htdocs/doc-1.0 |
| 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 \ |
|
3950
257b4eab3bb2
Documentation for the XML-RPC interface
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3949
diff
changeset
|
8 postgresql.txt tracker_templates.txt xmlrpc.txt |
| 798 | 9 |
| 10 COMPILED := $(SOURCE:.txt=.html) | |
| 2409 | 11 WEBHT := $(SOURCE:.txt=.ht) |
| 798 | 12 |
|
3950
257b4eab3bb2
Documentation for the XML-RPC interface
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3949
diff
changeset
|
13 all: html ht |
|
3949
29dfb873b32e
Small documentation cleanup
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3756
diff
changeset
|
14 html: ${COMPILED} |
|
29dfb873b32e
Small documentation cleanup
Justus Pendleton <jpend@users.sourceforge.net>
parents:
3756
diff
changeset
|
15 ht: ${WEBHT} |
| 2409 | 16 |
| 17 website: ${WEBHT} | |
| 18 cp *.ht ${WEBDIR} | |
|
3756
068b3d7d4279
images for user guide
Richard Jones <richard@users.sourceforge.net>
parents:
3650
diff
changeset
|
19 cp -r images ${WEBDIR} |
| 798 | 20 |
| 21 %.html: %.txt | |
|
1304
61ad556cfc8d
working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents:
1249
diff
changeset
|
22 ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 23 |
| 2409 | 24 %.ht: %.txt |
| 25 ${STXTOHT} --report=warning -d $< $@ | |
| 26 | |
| 1091 | 27 clean: |
| 28 rm -f ${COMPILED} |
