Mercurial > p > roundup > code
comparison doc/Makefile @ 1356:83f33642d220 maint-0.5
[[Metadata associated with this commit was garbled during conversion from CVS
to Subversion.]]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 09 Jan 2003 22:59:22 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1242:3d0158c8c32b | 1356:83f33642d220 |
|---|---|
| 1 PYTHON = /usr/bin/python2 | |
| 2 STXTOHTML = stx2html | |
| 3 | |
| 4 SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ | |
| 5 glossary.txt implementation.txt index.txt design.txt \ | |
| 6 installation.txt upgrading.txt user_guide.txt maintenance.txt | |
| 7 | |
| 8 COMPILED := $(SOURCE:.txt=.html) | |
| 9 | |
| 10 all: ${COMPILED} | |
| 11 | |
| 12 %.html: %.txt | |
| 13 ${STXTOHTML} --report=warning -d $< $@ | |
| 14 | |
| 15 clean: | |
| 16 rm -f ${COMPILED} |
