Mercurial > p > roundup > code
annotate doc/Makefile @ 1584:2090f2004ee3
Added some stuff that hit me to the FAQ.txt:
* The cgibin is very slow!
* How do I put it behind apache
* What is that stuff in ~/trackers/foo_issues/html/*
* But I just want a select/option list for ....
* Great! But now the select/option list is too big
* I got an error and I cant reload it!
* I tried changing my password and I got 'invalid one time ticket'
or something
| author | Cameron Blackwood <drkorg@users.sourceforge.net> |
|---|---|
| date | Thu, 10 Apr 2003 08:44:26 +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} |
