Mercurial > p > roundup > code
view doc/Makefile @ 3905:6733a7cce7f4
multiline pass through extra keywords args
extra keyword args get turned added to the textarea.
this allows users to do multiline(wrap='hard') per
http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/8436
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Sun, 16 Sep 2007 05:39:11 +0000 |
| parents | 068b3d7d4279 |
| children | 29dfb873b32e |
line wrap: on
line source
STXTOHTML = rst2html STXTOHT = rst2ht.py WEBDIR = ../../htdocs/htdocs/doc-1.0 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 COMPILED := $(SOURCE:.txt=.html) WEBHT := $(SOURCE:.txt=.ht) all: ${COMPILED} ${WEBHT} website: ${WEBHT} cp *.ht ${WEBDIR} cp -r images ${WEBDIR} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ %.ht: %.txt ${STXTOHT} --report=warning -d $< $@ clean: rm -f ${COMPILED}
