ffad3452fa8b216452dcf62894d82c2365be9872
[senf.git] / Socket / Protocols / DVB / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob
5
6 ###########################################################################
7
8 SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
9                                if f not in ('all_includes.hh','DVB.hh') and not f.endswith('.test.hh') ])
10
11 sources = SENFSCons.GlobSources()
12
13 allob = []
14
15 allob.extend(
16     SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) )
17
18 for sc in glob.glob("*/SConscript"):
19     ob = SConscript(sc)
20     if ob : allob.extend(ob)
21
22 SENFSCons.InstallIncludeFiles(env, [ 'DVB.hh', 'all_includes.hh' ])
23
24 Return('allob')