view doc/Makefile @ 1862:0afdf96ea9d7

Add a wrapper around the two different reader() functions... which removes all empty lines, as both csv parsers barf on them [SF#821364].
author Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
date Fri, 24 Oct 2003 16:29:17 +0000
parents 06f5b36b201b
children 3ffb7b56172a
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

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

all: ${COMPILED}

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

clean:
	rm -f ${COMPILED}

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