Mercurial > p > roundup > code
view doc/Makefile @ 1569:2bb4fa7050b1
added nicer popup windows for topic, nosy, etc (has add/remove buttons)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 27 Mar 2003 01:36:19 +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}
