view doc/Makefile @ 3060:53d1d4e2015c

index args URL generation broken in .10 [SF#1096027]
author Richard Jones <richard@users.sourceforge.net>
date Wed, 05 Jan 2005 21:47:13 +0000
parents 5c0e5abcb5e3
children 7a3e791b2b2b 9b99fff18683
line wrap: on
line source

STXTOHTML = rst2html.py
STXTOHT = rst2ht.py
WEBDIR = ../../htdocs/htdocs/doc-0.8

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 admin_guide.txt \
	postgresql.txt tracker_templates.txt whatsnew-0.8.txt

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

all: ${COMPILED} ${WEBHT}

website: ${WEBHT}
	cp *.ht ${WEBDIR}

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

%.ht: %.txt
	${STXTOHT} --report=warning -d $< $@

clean:
	rm -f ${COMPILED}

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