view doc/Makefile @ 1940:5add2b83cfa3 maint-0.6

fix Windows service mode for roundup-server [SF#819890]
author Richard Jones <richard@users.sourceforge.net>
date Thu, 04 Dec 2003 22:53:54 +0000
parents 0bdcfc2a47ac
children 06f5b36b201b
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}

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