view doc/Makefile @ 2389:2ff93cee9c63

StaticTranslationService got methods gettext() and ngettext()... ...to be usable instead of 'i18n' module; added module-level variable 'translationService'; DateHTMLProperty and IntervalHTMLProperty apply templates translation service to their values
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Sat, 05 Jun 2004 12:07:47 +0000
parents f76d1642014a
children e19284d8d2a4 096063697f77
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 admin_guide.txt \
	postgresql.txt tracker_templates.txt whatsnew-0.7.txt

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

all: ${COMPILED}

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

clean:
	rm -f ${COMPILED}

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