view doc/Makefile @ 1631:8a908bbad1ef

A couple of form value handling changes: - multilink properties may hhave multiple form values "1", "2,4", "5", ... - string search properties are split on whitespace and match any of the values
author Richard Jones <richard@users.sourceforge.net>
date Fri, 09 May 2003 01:47:51 +0000
parents 1ac46e7e4150
children 0bdcfc2a47ac
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 \
	overview.txt

COMPILED := $(SOURCE:.txt=.html)

all: ${COMPILED}

%.html: %.txt
	${STXTOHTML} --report=warning -d $< $@

clean:
	rm -f ${COMPILED}

Roundup Issue Tracker: http://roundup-tracker.org/