Mercurial > p > roundup > code
view doc/Makefile @ 1269:3816e2d6cf6e
Handle "unset" status in status auditor [SF#621250]
Issues in 'done-cbb' are now also moved to 'chatting' on new messages
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 11 Oct 2002 01:26:05 +0000 |
| parents | 6c24a86a12ae |
| children | 61ad556cfc8d |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')" 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 ${PYTHON} ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
