561137b49fe2c5f195d52cee689db03d2820b58c
[senf.git] / Utils / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob
5
6 ###########################################################################
7
8 SENFSCons.StandardTargets(env)
9
10 sources, testSources = SENFSCons.GlobSources()
11 objects = SENFSCons.Objects( env, sources = sources, testSources=testSources )
12
13 for sc in glob.glob("*/SConscript"):
14     ob = SConscript(sc)
15     if ob : objects.extend(ob)
16
17 SENFSCons.Lib(env,
18               library = 'Utils',
19               sources = objects)
20
21 SENFSCons.Doxygen(env)