comparison doc/Makefile @ 2409:096063697f77

merge
author Richard Jones <richard@users.sourceforge.net>
date Wed, 09 Jun 2004 00:25:32 +0000
parents f76d1642014a
children 0357a9c93933
comparison
equal deleted inserted replaced
2405:1736886eefb3 2409:096063697f77
1 PYTHON = /usr/bin/python2
2 STXTOHTML = rst2html 1 STXTOHTML = rst2html
2 STXTOHT = rst2ht.py
3 WEBDIR = ../../htdocs/htdocs/doc-0.7
3 4
4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ 5 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \
5 glossary.txt implementation.txt index.txt design.txt mysql.txt \ 6 glossary.txt implementation.txt index.txt design.txt mysql.txt \
6 installation.txt upgrading.txt user_guide.txt admin_guide.txt \ 7 installation.txt upgrading.txt user_guide.txt admin_guide.txt \
7 postgresql.txt tracker_templates.txt whatsnew-0.7.txt 8 postgresql.txt tracker_templates.txt whatsnew-0.7.txt
8 9
9 COMPILED := $(SOURCE:.txt=.html) 10 COMPILED := $(SOURCE:.txt=.html)
11 WEBHT := $(SOURCE:.txt=.ht)
10 12
11 all: ${COMPILED} 13 all: ${COMPILED} ${WEBHT}
14
15 website: ${WEBHT}
16 cp *.ht ${WEBDIR}
12 17
13 %.html: %.txt 18 %.html: %.txt
14 ${STXTOHTML} --report=warning -d $< $@ 19 ${STXTOHTML} --report=warning -d $< $@
15 20
21 %.ht: %.txt
22 ${STXTOHT} --report=warning -d $< $@
23
16 clean: 24 clean:
17 rm -f ${COMPILED} 25 rm -f ${COMPILED}

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