view doc/Makefile @ 1941:bcc65c5b86e6

fixed date arithmetic to not allow day-of-month == 0 [SF#853306] fixed date arithmetic to limit hours-per-day to 24, not 60
author Richard Jones <richard@users.sourceforge.net>
date Thu, 04 Dec 2003 23:06:53 +0000
parents 3ffb7b56172a
children a291bf753037
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 mysql.txt \
    installation.txt upgrading.txt user_guide.txt maintenance.txt \
	postgresql.txt

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

all: ${COMPILED}

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

clean:
	rm -f ${COMPILED}

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