Mercurial > p > roundup > code
view doc/Makefile @ 1687:580ce488f976 maint-0.5
py2.3+roundup, not in a happy place
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Tue, 24 Jun 2003 03:47:45 +0000 |
| parents | 83f33642d220 |
| children |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = stx2html SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ glossary.txt implementation.txt index.txt design.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}
