Mercurial > p > roundup > code
view doc/Makefile @ 2327:36ae1b14aaab
remove excessive spaces in the translatable strings;
trim trailing spaces in code
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Tue, 18 May 2004 19:23:44 +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}
