373b5d6e507493ffefebc2dddcf4d1d415a412c5
[senf.git] / senfscons / SENFSCons.py
1 ## \file
2 # \brief SENFSCons package
3
4 ## \package senfscons.SENFSCons
5 # \brief Build helpers and utilities
6 #
7 # The SENFSCons package contains a number of build helpers and
8 # utilities which are used to simplify commmon tasks.
9 #
10 # The utitlities of this package are grouped into:
11 # <dl><dt>\ref use</dt><dd>help using complex environments and
12 # configure the construction environmen correspondingly</dd>
13 #
14 # <dt>\ref target</dt><dd>simplify building common targest and include
15 # enhanced functionality like unit-testing.</dd></dl>
16 #
17 # Additionally for external use are
18 # <dl><dt>MakeEnvironment()</dt><dd>Build construction
19 # environment</dd>
20 #
21 # <dt>GlobSources()</dt><dd>Utility to find source files</dd></dl>
22 #
23 # All other functions are for internal use only.
24
25 import os.path, glob
26 import SCons.Options, SCons.Environment, SCons.Script.SConscript, SCons.Node.FS
27 import SCons.Defaults, SCons.Action
28
29 ## \defgroup use Predefined Framework Configurators
30 #
31 # The following framework configurators are used in the top level \c
32 # SConstruct file to simplify more complex configurations.
33 #
34 # Each of the framework configurators introduces additional
35 # configuration parameters to \ref sconfig
36
37 ## \defgroup target Target Helpers
38 #
39 # To specify standard targets, the following helpers can be used. They
40 # automatically integrate several modules (like documentation,
41 # unit-testing etc).
42
43 ## \defgroup builder Builders
44 #
45 # The SENFSCons framework includes a series of builders. Each builder
46 # is defined in it's own package.
47
48 # Tools to load in MakeEnvironment
49 SCONS_TOOLS = [
50     "Doxygen",
51     "Dia2Png",
52     "CopyToDir",
53     "InstallIncludes",
54 ]
55
56 opts = None
57 finalizers = []
58
59 # This is the directory SENFSCons.py resides
60 basedir = os.path.abspath(os.path.split(__file__)[0])
61
62 ## \brief Initialize configuration options
63 # \internal
64 def InitOpts():
65     global opts
66     if opts is not None: return
67     opts = SCons.Options.Options('SConfig')
68     opts.Add('CXX', 'C++ compiler to use', 'g++')
69     opts.Add('EXTRA_DEFINES', 'Additional preprocessor defines', '')
70     opts.Add('EXTRA_LIBS', 'Additional libraries to link against', '')
71     opts.Add(SCons.Options.BoolOption('final','Enable optimization',0))
72     opts.Add('PREFIX', 'Installation prefix', '/usr/local')
73     opts.Add('LIBINSTALLDIR', 'Library install dir', '$PREFIX/lib')
74     opts.Add('BININSTALLDIR', 'Executable install dir', '$PREFIX/bin')
75     opts.Add('INCLUDEINSTALLDIR', 'Include-file install dir', '$PREFIX/include')
76     opts.Add('OBJINSTALLDIR', 'Static object file install dir', '$LIBINSTALLDIR')
77     opts.Add('DOCINSTALLDIR', 'Documentation install dir', '$PREFIX/doc')
78     opts.Add('CPP_INCLUDE_EXTENSIONS', 'File extensions to include in source install',
79              [ '.h', '.hh', '.ih', '.mpp', '.cci', '.ct', '.cti', '.mpp' ])
80
81 # A finalizer is any callable object. All finalizers will be called
82 # in MakeEnvironment. We use them so every finalizer has knowledge of
83 # all frameworks in use (e.g.: the boost runtime depends on the use of
84 # stlport).
85
86 ## \brief Register finalizer
87 # \internal
88 def Finalizer(f):
89     global finalizers
90     finalizers.append(f)
91
92 ## \brief Initialize the use of the <a href="http://www.boost.org/">Boost</a> library
93 #
94 # Configure the use of the <a href="http://www.boost.org">Boost</a>
95 # libraries. Most of these libraries are header-only, some however
96 # depend on a built library. The library selection is somewhat
97 # involved and depends on the threading model and the type of build
98 # (debug or final).
99 #
100 # \par Configuration Parameters:
101 #     <table class="senf">
102 #     <tr><td>\c BOOST_INCLUDES</td><td>Include directory.</td></tr>
103 #     <tr><td>\c BOOST_LIBDIR</td><td>Library directory</td></tr>
104 #     <tr><td>\c BOOST_VARIANT</td><td>Complete variant specification</td></tr>
105 #     <tr><td>\c BOOST_TOOLSET</td><td>Toolset to use</td></tr>
106 #     <tr><td>\c BOOST_RUNTIME</td><td>Runtime to use</td></tr>
107 #     <tr><td>\c BOOST_DEBUG_RUNTIME</td><td>Explicit debug runtime</td></tr>
108 #     </table>
109 #
110 # You can either specify \c BOOST_VARIANT explicitly or specify \c
111 # BOOST_TOOLSET and \c BOOST_RUNTIME. If you give \c BOOST_TOOLSET, \c
112 # BOOST_RUNTIME defaults to empty and \c BOOST_DEBUG_RUNTIME defaults
113 # to \c gd, If \c BOOST_TOOLSET is specified and you have included
114 # STLPort support (UseSTLPort()), then \c p is appended to both
115 # runtimes.
116 #
117 # The Boost configuration can get realtively complex. If the boost
118 # libraries are provided by the distribution, you probably don't need
119 # to specify any parameters. If your configuration is more complex,
120 # refer to the <a
121 # href="http://www.boost.org/tools/build/v1/build_system.htm">Boost.Build</a>
122 # documentation for a definition of the terms used above (toolset,
123 # variant, runtime ...).
124 #
125 # \ingroup use
126 def UseBoost():
127     global opts
128     InitOpts()
129     opts.Add('BOOST_INCLUDES', 'Boost include directory', '')
130     opts.Add('BOOST_VARIANT', 'The boost variant to use', '')
131     opts.Add('BOOST_TOOLSET', 'The boost toolset to use', '')
132     opts.Add('BOOST_RUNTIME', 'The boost runtime to use', '')
133     opts.Add('BOOST_DEBUG_RUNTIME', 'The boost debug runtime to use', '')
134     opts.Add('BOOST_LIBDIR', 'The directory of the boost libraries', '')
135     Finalizer(FinalizeBoost)
136
137 ## \brief Finalize Boost environment
138 # \internal
139 def FinalizeBoost(env):
140     env.Tool('BoostUnitTests', [basedir])
141
142     if env['BOOST_TOOLSET']:
143         runtime = ""
144         if env['final'] : runtime += env.get('BOOST_RUNTIME','')
145         else            : runtime += env.get('BOOST_DEBUG_RUNTIME','gd')
146         if env['STLPORT_LIB'] : runtime += "p"
147         if runtime: runtime = "-" + runtime
148         env['BOOST_VARIANT'] = "-" + env['BOOST_TOOLSET'] + runtime
149
150     env['BOOSTTESTLIB'] = 'libboost_unit_test_framework' + env['BOOST_VARIANT']
151     env['BOOSTREGEXLIB'] = 'libboost_regex' + env['BOOST_VARIANT']
152
153     env.Append(LIBPATH = [ '$BOOST_LIBDIR' ],
154                CPPPATH = [ '$BOOST_INCLUDES' ])
155
156 ## \brief Use STLPort as STL replacement if available
157 #
158 # Use <a href="http://www.stlport.org">STLPort</a> as a replacement
159 # for the system STL. STLPort has the added feature of providing fully
160 # checked containers and iterators. This can greatly simplify
161 # debugging. However, STLPort and Boost interact in a non-trivial way
162 # so the configuration is relatively complex. This command does not
163 # enforce the use of STLPort, it is only used if available.
164 #
165 # \par Configuration Parameters:
166 #     <table class="senf">
167 #     <tr><td>\c STLPORT_INCLUDES</td><td>Include directory.</td></tr>
168 #     <tr><td>\c STLPORT_LIBDIR</td><td>Library directory</td></tr>
169 #     <tr><td>\c STLPORT_LIB</td><td>Name of STLPort library</td></tr>
170 #     <tr><td>\c STLPORT_DEBUGLIB</td><td>Name of STLPort debug library</td></tr>
171 #     </table>
172 #
173 # If \c STLPORT_LIB is specified, \c STLPORT_DEBUGLIB defaults to \c
174 # STLPORT_LIB with \c _stldebug appended. The STLPort library will
175 # only be used, if \c STLPORT_LIB is set in \c SConfig.
176 #
177 # \ingroup use
178 def UseSTLPort():
179     global opts
180     InitOpts()
181     opts.Add('STLPORT_INCLUDES', 'STLport include directory', '')
182     opts.Add('STLPORT_LIB', 'Name of the stlport library or empty to not use stlport', '')
183     opts.Add('STLPORT_DEBUGLIB', 'Name of the stlport debug library','')
184     opts.Add('STLPORT_LIBDIR', 'The directory of the stlport libraries','')
185     Finalizer(FinalizeSTLPort)
186
187 # \}
188
189 ## \brief Finalize STLPort environment
190 # \internal
191 def FinalizeSTLPort(env):
192     if env['STLPORT_LIB']:
193         if not env['STLPORT_DEBUGLIB']:
194             env['STLPORT_DEBUGLIB'] = env['STLPORT_LIB'] + '_stldebug'
195         env.Append(LIBPATH = [ '$STLPORT_LIBDIR' ],
196                    CPPPATH = [ '$STLPORT_INCLUDES' ])
197         if env['final']:
198             env.Append(LIBS = [ '$STLPORT_LIB' ])
199         else:
200             env.Append(LIBS = [ '$STLPORT_DEBUGLIB' ],
201                        CPPDEFINES = [ '_STLP_DEBUG' ])
202
203 ## \brief Build a configured construction environment
204 #
205 # This function is called after all frameworks are specified to build
206 # a tailored construction environment. You can then use this
207 # construction environment just like an ordinary SCons construction
208 # environment (which it is ...)
209 #
210 # This call will set some default compilation parameters depending on
211 # the \c final command line option: specifying <tt>final=1</tt> will
212 # built a release version of the code.
213 def MakeEnvironment():
214     global opts, finalizers
215     InitOpts()
216     env = SCons.Environment.Environment(options=opts)
217     for opt in opts.options:
218         if SCons.Script.SConscript.Arguments.get(opt.key):
219             env[opt.key] = SCons.Script.SConscript.Arguments.get(opt.key)
220     if SCons.Script.SConscript.Arguments.get('final'):
221         env['final'] = 1
222     env.Help("\nSupported build variables (either in SConfig or on the command line:\n")
223     env.Help(opts.GenerateHelpText(env))
224
225     # We want to pass the SSH_AUTH_SOCK system env-var so we can ssh
226     # into other hosts from within SCons rules. I have used rules like
227     # this e.g. to automatically install stuff on a remote system ...
228     if os.environ.has_key('SSH_AUTH_SOCK'):
229         env.Append( ENV = { 'SSH_AUTH_SOCK': os.environ['SSH_AUTH_SOCK'] } )
230
231     for finalizer in finalizers:
232         finalizer(env)
233
234     for tool in SCONS_TOOLS:
235         env.Tool(tool, [basedir])
236
237     # These are the default compilation parameters. We should probably
238     # make these configurable
239     env.Append(CXXFLAGS = [ '-Wall', '-Woverloaded-virtual', '-Wno-long-long' ],
240                LOCALLIBDIR = [ '#' ],
241                LIBPATH = [ '$LOCALLIBDIR' ])
242
243     if env['final']:
244         env.Append(CXXFLAGS = [ '-O3' ],
245                    CPPDEFINES = [ 'NDEBUG' ])
246     else:
247         env.Append(CXXFLAGS = [ '-O0', '-g', '-fno-inline' ],
248                    LINKFLAGS = [ '-g' ])
249
250     env.Append(CPPDEFINES = [ '$EXTRA_DEFINES' ],
251                LIBS = [ '$EXTRA_LIBS' ],
252                ALLLIBS = [])
253
254     return env
255
256 ## \brief Find normal and test C++ sources
257 #
258 # GlobSources() will return a list of all C++ source files (named
259 # "*.cc") as well as a list of all unit-test files (named "*.test.cc")
260 # in the current directory. The sources will be returned as a tuple of
261 # sources, test-sources. The target helpers all accept such a tuple as
262 # their source argument.
263 def GlobSources(exclude=[], subdirs=[]):
264     testSources = glob.glob("*.test.cc")
265     sources = [ x for x in glob.glob("*.cc") if x not in testSources and x not in exclude ]
266     for subdir in subdirs:
267         testSources += glob.glob(os.path.join(subdir,"*.test.cc"))
268         sources += [ x for x in glob.glob(os.path.join(subdir,"*.cc"))
269                      if x not in testSources and x not in exclude ]
270     return (sources, testSources)
271
272 ## \brief Add generic standard targets for every module
273 #
274 # This target helper should be called in the top-level \c SConstruct file
275 # as well as in every module \c SConscipt file. It adds general
276 # targets. Right now, these are
277 # \li clean up \c .sconsign, \c .sconf_temp and \c config.log on
278 #   <tt>scons -c all</tt>
279 #
280 # \ingroup target
281 def StandardTargets(env):
282     env.Clean(env.Alias('all'), [ '.sconsign', '.sconf_temp', 'config.log' ])
283
284 ## \brief Add generic global targets
285 #
286 # This target helper should be called in the top-level \c SConstruct
287 # file. It adds general global targets. Right now theese are
288 # \li Make <tt>scons all</tt> build all targets.
289 #
290 # \ingroup target
291 def GlobalTargets(env):
292     env.Depends(env.Alias('all'),'#')
293
294 ## \brief Return path of a built library within $LOCALLIBDIR
295 # \internal
296 def LibPath(lib): return '$LOCALLIBDIR/lib%s.a' % lib
297
298 ## \brief Build object files
299 #
300 # This target helper will build object files from the given
301 # sources.
302 #
303 # If \a testSources are given, a unit test will be built using the <a
304 # href="http://www.boost.org/libs/test/doc/index.html">Boost.Test</a>
305 # library. \a LIBS may specify any additional library modules <em>from
306 # the same project</em> on which the test depends. Those libraries
307 # will be linked into the final test executable. The test will
308 # automatically be run if the \c test or \c all_tests targets are
309 # given.
310 #
311 # If \a sources is a 2-tuple as returned by GlobSources(), it will
312 # provide both \a sources and \a testSources.
313 #
314 # \ingroup target
315 def Objects(env, sources, testSources = None, LIBS = [], OBJECTS = []):
316     if type(sources) == type(()):
317         testSources = sources[1]
318         sources = sources[0]
319     if type(sources) is not type([]):
320         sources = [ sources ]
321
322     objects = None
323     if sources:
324         objects = env.Object([
325             source
326             for source in sources
327             if not str(source).endswith('.o') ]) + [
328             source
329             for source in sources
330             if str(source).endswith('.o') ]
331         
332
333     if testSources:
334         test = env.BoostUnitTests(
335             target = 'test',
336             objects = objects,
337             test_sources = testSources,
338             LIBS = LIBS,
339             OBJECTS = OBJECTS,
340             DEPENDS = [ env.File(LibPath(x)) for x in LIBS ])
341         env.Alias('all_tests', test)
342         # Hmm ... here I'd like to use an Alias instead of a file
343         # however the alias does not seem to live in the subdirectory
344         # which breaks 'scons -u test'
345         env.Alias(env.File('test'), test)
346
347     return objects
348
349 def InstallIncludeFiles(env, files):
350     target = env.Dir(env['INCLUDEINSTALLDIR'])
351     base = env.Dir(env['INSTALL_BASE'])
352     for f in files:
353         src = env.File(f)
354         env.Alias('install_all', env.Install(target.Dir(src.dir.get_path(base)), src))
355
356 def InstallWithSources(env, targets, dir, sources, testSources = [], no_includes = False):
357     if type(sources) is type(()):
358         sources, testSources = sources
359     if type(sources) is not type([]):
360         sources = [ sources ]
361     if type(testSources) is not type([]):
362         testSources = [ testSources ]
363
364     installs = []
365     installs.append( env.Install(dir, targets) )
366
367     if not no_includes:
368         target = env.Dir(env['INCLUDEINSTALLDIR']).Dir(
369             env.Dir('.').get_path(env.Dir(env['INSTALL_BASE'])))
370         source = targets
371         if testSources:
372             source.append( env.File('.test.bin') )
373             installs.append(env.InstallIncludes(
374                 target = target,
375                 source = targets,
376                 INSTALL_BASE = env.Dir('.') ))
377
378     return installs
379
380 ## \brief Build documentation with doxygen
381 #
382 # The doxygen target helper will build software documentation using
383 # the given \a doxyfile (which defaults to \c Doxyfile). The Doxygen
384 # builder used supports automatic dependency generation (dependencies
385 # are automatically generated from the parameters specified in the \a
386 # doxyfile), automatic target emitters (the exact targets created are
387 # found parsing the \a doxyfile) and lots of other features. See the
388 # Doxygen builder documentation
389 #
390 # If \a extra_sources are given, the generated documentation will
391 # depend on them. This can be used to build images or other
392 # supplementary files.
393 #
394 # The doxygen target helper extends the builder with additional
395 # functionality:
396 #
397 # \li Fix tagfiles by removing namespace entries. These entries only
398 #     work for namespaces completely defined in a single module. As
399 #     soon as another module (which references the tagfile) has it's
400 #     own members in that namespace, the crosslinking will break.
401 # \li If \c DOXY_HTML_XSL is defined as a construction environment
402 #     variable, preprocess all generated html files (if html files are
403 #     generated) by the given XSLT stylesheet. Since the HTML
404 #     generated by doxygen is broken, we first filter the code through
405 #     HTML-\c tidy and filter out some error messages.
406 # \li If xml output is generated we create files \c bug.xmli and \c
407 #     todo.xmli which contain all bugs and todo items specified in the
408 #     sources. The format of these files is much more suited to
409 #     postprocessing and is a more database like format as the doxygen
410 #     generated files (which are more presentation oriented). if \c
411 #     DOXY_XREF_TYPES is given, it will specify the cross reference
412 #     types to support (defaults to \c bug and \c todo). See <a
413 #     href="http://www.stack.nl/~dimitri/doxygen/commands.html#cmdxrefitem">\xrefitem</a>
414 #     in the doxygen documentation.
415 #
416 # \ingroup target
417 def Doxygen(env, doxyfile = "Doxyfile", extra_sources = []):
418     # ARGHHH !!! without the [:] we are changing the target list
419     #        ||| WITHIN THE DOXYGEN BUILDER
420     docs = env.Doxygen(doxyfile)[:]
421     xmlnode = None
422     htmlnode = None
423     tagnode = None
424     for doc in docs:
425         if isinstance(doc,SCons.Node.FS.Dir): continue
426         if doc.name == 'xml.stamp' : xmlnode = doc
427         if doc.name == 'html.stamp' : htmlnode = doc
428         if doc.name == 'search.idx' : continue
429         if os.path.splitext(doc.name)[1] == '.stamp' : continue # ignore other file stamps
430         # otherwise it must be the tag file
431         tagnode = doc
432
433     if tagnode:
434         # Postprocess the tag file to remove the (broken) namespace
435         # references
436         env.AddPostAction(
437             docs,
438             SCons.Action.Action("xsltproc --nonet -o %(target)s.temp %(template)s %(target)s && mv %(target)s.temp %(target)s"
439                        % { 'target': tagnode.abspath,
440                            'template': os.path.join(basedir,"tagmunge.xsl") }))
441
442     if htmlnode and env.get('DOXY_HTML_XSL'):
443         xslfile = env.File(env['DOXY_HTML_XSL'])
444         reltopdir = '../' * len(htmlnode.dir.abspath[len(env.Dir('#').abspath)+1:].split('/'))
445         if reltopdir : reltopdir = reltopdir[:-1]
446         else         : reltopdir = '.'
447         env.AddPostAction(
448             docs,
449             SCons.Action.Action(("for html in %s/*.html; do " +
450                         "    echo $$html;" +
451                         "    sed -e 's/id=\"current\"/class=\"current\"/' $${html}" +
452                         "        | tidy -ascii -q --show-warnings no --fix-uri no " +
453                         "        | xsltproc --nonet --html --stringparam topdir %s -o $${html}.new %s - 2>&1" +
454                         "        | grep '^-'" +
455                         "        | grep -v 'ID .* already defined';" +
456                         "    mv $${html}.new $${html}; " +
457                         "done")
458                        % (htmlnode.dir.abspath, reltopdir, xslfile.abspath)))
459         for doc in docs:
460             env.Depends(doc, xslfile)
461
462     if xmlnode:
463         xrefs = []
464         for type in env.get("DOXY_XREF_TYPES",[ "bug", "todo" ]):
465             xref = os.path.join(xmlnode.dir.abspath,type+".xml")
466             xref_pp = env.Command(xref+'i', [ xref, os.path.join(basedir,'xrefxtract.xslt'), xmlnode ],
467                                   [ "test -s $SOURCE && xsltproc -o $TARGET" +
468                                     " --stringparam module $MODULE" +
469                                     " --stringparam type $TYPE" +
470                                     " ${SOURCES[1]} $SOURCE || touch $TARGET" ],
471                                   MODULE = xmlnode.dir.dir.dir.abspath[
472                                                len(env.Dir('#').abspath)+1:],
473                                   TYPE = type)
474             env.SideEffect(xref, xmlnode)
475             env.AddPreAction(docs, "rm -f %s" % (xref,))
476             env.AddPostAction(docs, "test -r %s || touch %s" % (xref,xref))
477             xrefs.extend(xref_pp)
478         docs.extend(xrefs)
479
480     if extra_sources and htmlnode:
481         env.Depends(docs,
482                     [ env.CopyToDir( source=source, target=htmlnode.dir )
483                       for source in extra_sources ])
484
485     if extra_sources and xmlnode:
486         env.Depends(docs,
487                     [ env.CopyToDir( source=source, target=xmlnode.dir )
488                       for source in extra_sources ])
489
490     if not htmlnode and not xmlnode:
491         env.Depends(docs, extra_sources)
492
493     for doc in docs :
494         env.Alias('all_docs', doc)
495         env.Clean('all_docs', doc)
496         env.Clean('all', doc)
497
498     l = len(env.Dir('#').abspath)
499     if htmlnode:
500         env.Alias('install_all',
501                   env.Install( '$DOCINSTALLDIR' + htmlnode.dir.dir.abspath[l:],
502                                htmlnode.dir ))
503     if tagnode:
504         env.Alias('install_all',
505                   env.Install( '$DOCINSTALLDIR' + tagnode.dir.abspath[l:],
506                                tagnode ))
507
508     return docs
509
510 ## \brief Build combined doxygen cross-reference
511 #
512 # This command will build a complete cross-reference of \c xrefitems
513 # accross all modules.
514 #
515 # Right now, this command is very project specific. It needs to be
516 # generalized.
517 #
518 # \ingroup target
519 def DoxyXRef(env, docs=None,
520              HTML_HEADER = None, HTML_FOOTER = None,
521              TITLE = "Cross-reference of action points"):
522     if docs is None:
523         docs = env.Alias('all_docs')[0].sources
524     xrefs = [ doc for doc in docs if os.path.splitext(doc.name)[1] == ".xmli" ]
525     xref = env.Command("doc/html/xref.xml", xrefs,
526                        [ "echo '<?xml version=\"1.0\"?>' > $TARGET",
527                          "echo '<xref>' >> $TARGET",
528                          "cat $SOURCES >> $TARGET",
529                          "echo '</xref>' >>$TARGET" ])
530
531     # Lastly we create the html file
532     sources = [ xref, "%s/xrefhtml.xslt" % basedir ]
533     if HTML_HEADER : sources.append(HTML_HEADER)
534     if HTML_FOOTER : sources.append(HTML_FOOTER)
535
536     commands = []
537     if HTML_HEADER:
538         commands.append("sed" +
539                         " -e 's/\\$$title/$TITLE/g'" +
540                         " -e 's/\\$$projectname/Overview/g'" +
541                         " ${SOURCES[2]} > $TARGET")
542     commands.append("xsltproc" +
543                     " --stringparam title '$TITLE'" +
544                     " --stringparam types '$DOXY_XREF_TYPES'" +
545                     " ${SOURCES[1]} $SOURCE >> $TARGET")
546     if HTML_FOOTER:
547         commands.append(
548             "sed -e 's/\\$$title/$TITLE/g' -e 's/\\$$projectname/Overview/g' ${SOURCES[%d]} >> $TARGET"
549             % (HTML_HEADER and 3 or 2))
550
551     if env.get('DOXY_HTML_XSL'):
552         xslfile = env.File(env['DOXY_HTML_XSL'])
553         reltopdir = '../' * len(xref[0].dir.abspath[len(env.Dir('#').abspath)+1:].split('/'))
554         if reltopdir : reltopdir = reltopdir[:-1]
555         else         : reltopdir = '.'
556         commands.append(("xsltproc -o ${TARGET}.tmp" +
557                          " --nonet --html" +
558                          " --stringparam topdir %s" +
559                          " ${SOURCES[-1]} $TARGET 2>/dev/null")
560                         % reltopdir)
561         commands.append("mv ${TARGET}.tmp ${TARGET}")
562         sources.append(xslfile)
563         
564     xref = env.Command("doc/html/xref.html", sources, commands,
565                        TITLE = TITLE)
566
567     env.Alias('all_docs',xref)
568     return xref
569
570
571 ## \brief Build library
572 #
573 # This target helper will build the given library. The library will be
574 # called lib<i>library</i>.a as is customary on UNIX systems. \a
575 # sources, \a testSources and \a LIBS are directly forwarded to the
576 # Objects build helper.
577 #
578 # The library is added to the list of default targets.
579 #
580 #\ingroup target
581 def Lib(env, library, sources, testSources = None, LIBS = [], OBJECTS = [], no_includes = False):
582     objects = Objects(env,sources,testSources,LIBS=LIBS,OBJECTS=OBJECTS)
583     lib = None
584     if objects:
585         lib = env.Library(env.File(LibPath(library)),objects)
586         env.Default(lib)
587         env.Append(ALLLIBS = library)
588         install = InstallWithSources(env, lib, '$LIBINSTALLDIR', sources, testSources, no_includes)
589         env.Alias('install_all', install)
590     return lib
591
592 ## \brief Build Object from multiple sources
593 def Object(env, target, sources, testSources = None, LIBS = [], OBJECTS = [], no_includes = False):
594     objects = Objects(env,sources,testSources,LIBS=LIBS,OBJECTS=OBJECTS)
595     ob = None
596     if objects:
597         ob = env.Command(target+".o", objects, "ld -r -o $TARGET $SOURCES")
598         env.Default(ob)
599         install = InstallWithSources(env, ob, '$OBJINSTALLDIR', sources, testSources, no_includes)
600         env.Alias('install_all', install)
601     return ob
602
603 ## \brief Build executable
604 #
605 # This target helper will build the given binary.  The \a sources, \a
606 # testSources and \a LIBS arguments are forwarded to the Objects
607 # builder. The final program will be linked against all the library
608 # modules specified in \a LIBS (those are libraries which are built as
609 # part of the same proejct). To specify non-module libraries, use the
610 # construction environment parameters or the framework helpers.
611 #
612 # \ingroup target
613 def Binary(env, binary, sources, testSources = None, LIBS = [], OBJECTS = [], no_includes = False):
614     objects = Objects(env,sources,testSources,LIBS=LIBS,OBJECTS=OBJECTS)
615     program = None
616     if objects:
617         progEnv = env.Copy()
618         progEnv.Prepend(LIBS = LIBS)
619         program = progEnv.Program(target=binary,source=objects+OBJECTS)
620         env.Default(program)
621         env.Depends(program, [ env.File(LibPath(x)) for x in LIBS ])
622         install = InstallWithSources(env, program, '$BININSTALLDIR', sources, testSources,
623                                      no_includes)
624         env.Alias('install_all', install)
625     return program
626
627 def AllIncludesHH(env, headers):
628     headers.sort()
629     file(env.File("all_includes.hh").abspath,"w").write("".join([ '#include "%s"\n' % f
630                                                                   for f in headers ]))
631     env.Clean('all','all_includes.hh')
632