Mercurial > p > roundup > code
annotate doc/Makefile @ 1576:80519db85eac
More tweaks to the licensing to make the Debian folks happy :)
Added an "instant gratification" mode - "python setup.py demo" installs a
simple instance and runs the web server on it. Nosy is disabled.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 07 Apr 2003 03:47:44 +0000 |
| parents | 3f2e516b8de3 |
| children | 1ac46e7e4150 |
| 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 \ | |
|
1244
8dd4f736370b
merge from maintenance branch
Richard Jones <richard@users.sourceforge.net>
parents:
1218
diff
changeset
|
5 glossary.txt implementation.txt index.txt design.txt \ |
|
1249
6c24a86a12ae
Fixes for SourceForge tracker bugs.
Richard Jones <richard@users.sourceforge.net>
parents:
1244
diff
changeset
|
6 installation.txt upgrading.txt user_guide.txt maintenance.txt |
| 798 | 7 |
| 8 COMPILED := $(SOURCE:.txt=.html) | |
| 9 | |
| 10 all: ${COMPILED} | |
| 11 | |
| 12 %.html: %.txt | |
|
1304
61ad556cfc8d
working toward 0.5.2 release
Richard Jones <richard@users.sourceforge.net>
parents:
1249
diff
changeset
|
13 ${STXTOHTML} --report=warning -d $< $@ |
| 798 | 14 |
| 1091 | 15 clean: |
| 16 rm -f ${COMPILED} |
