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