Mercurial > p > roundup > code
view doc/Makefile @ 1292:f7d9fefcae88
Fixes for SourceForge tracker bugs.
- remember the change note on bad submissions [SF#625989]
- highlight required form fields [SF#625989]
add a couple of examples to the customisation doc too.
un-reversed the message list so first messages appear first.
fixed the messages header (post introduction of "remove")
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 21 Oct 2002 00:42:00 +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}
