4e77b0021b8bc96f8f5ddc61f762fc60255f5852
[senf.git] / Socket / Protocols / DVB / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob
5
6 ###########################################################################
7
8 sources = SENFSCons.GlobSources()
9
10 allob = []
11
12 allob.extend(
13     SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) )
14
15 for sc in glob.glob("*/SConscript"):
16     ob = SConscript(sc)
17     if ob : allob.extend(ob)
18
19 Return('allob')