Here is an attempt to build using scons (instead of bjam):

(The result is not as pretty as the docs that came with quickbook, what am I
missing?)

,----[ /disk1/nbecker/quickbook/doc/SConstruct ]
| import os
| 
| qb_bld = Builder (action = ['quickbook $SOURCE'],  suffix = '.qbk.xml',
| src_suffix = '.qbk') db_bld = Builder (action = 'xsltproc
| /usr/local/src/boost.cvs/tools/boostbook/xsl/docbook.xsl $SOURCE >
| $TARGET', suffix = '.db', src_suffix = '.xml',
| src_builder=qb_bld)
| 
| html_bld = Builder (action = 'xsltproc
| /usr/local/src/boost.cvs/tools/boostbook/xsl/html.xsl $SOURCE > $TARGET',
| suffix = '.html', src_suffix = '.db',
| src_builder=db_bld)
| 
| env = Environment (ENV = {'PATH' : os.environ['PATH']}, BUILDERS = {'qb' :
| qb_bld, 'db' : db_bld, 'html' : html_bld})
| 
| env.html (target = 'quickbook.html', source = 'quickbook.qbk')
`----



-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
Boost-docs mailing list
[EMAIL PROTECTED]
Unsubscribe and other administrative requests: 
https://lists.sourceforge.net/lists/listinfo/boost-docs

Reply via email to