view doc/Makefile @ 1143:c7119e74fcf8

Fixed: . handling of None for Date/Interval/Password values in export/import . handling of journal values in export/import Also played with metakit backend some, fixing some of the unit tests breakages. Hrm.
author Richard Jones <richard@users.sourceforge.net>
date Fri, 13 Sep 2002 08:20:13 +0000
parents d870139aeb5c
children 4c9882cb16a3
line wrap: on
line source

PYTHON = /usr/bin/python2
STXTOHTML = -c "from docutils.core import publish;publish(writer_name='html')"

SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
    getting_started.txt glossary.txt implementation.txt index.txt \
    installation.txt security.txt upgrading.txt user_guide.txt

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

all: ${COMPILED}

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

clean:
	rm -f ${COMPILED}

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