Mercurial > p > roundup > code
view 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 |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = rst2html SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ glossary.txt implementation.txt index.txt design.txt \ installation.txt upgrading.txt user_guide.txt maintenance.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
