Mercurial > p > roundup > code
annotate doc/Makefile @ 2120:09ad4c25fca1
Adding a new reactor...
...for supporting Internet Explorer's kludge in not allowing .eml to
be opened (and giving you no clues as to why it's not opening it,
either. :P). Read detectors/filereactor.py for more information.
| author | Eddie Parker <eparker@users.sourceforge.net> |
|---|---|
| date | Thu, 25 Mar 2004 21:53:48 +0000 |
| parents | a291bf753037 |
| children | f01befe8a7fe |
| rev | line source |
|---|---|
| 798 | 1 PYTHON = /usr/bin/python2 |
| 1560 | 2 STXTOHTML = rst2html |
| 798 | 3 |
| 4 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
|
5 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
|
6 installation.txt upgrading.txt user_guide.txt admin_guide.txt \ |
|
1875
3ffb7b56172a
*** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents:
1839
diff
changeset
|
7 postgresql.txt |
| 798 | 8 |
| 9 COMPILED := $(SOURCE:.txt=.html) | |
| 10 | |
| 11 all: ${COMPILED} | |
| 12 | |
| 13 %.html: %.txt | |
|
1304
61ad556cfc8d
working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents:
1249
diff
changeset
|
14 ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 15 |
| 1091 | 16 clean: |
| 17 rm -f ${COMPILED} |
