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