Scheduler: Remove unneeded Socket dependency
[senf.git] / Socket / Protocols / SConscript
index 4e77b00..e0e2d49 100644 (file)
@@ -5,15 +5,15 @@ import SENFSCons, glob
 
 ###########################################################################
 
-sources = SENFSCons.GlobSources()
-
-allob = []
+SENFSCons.StandardTargets(env)
 
-allob.extend(
-    SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) )
+sources = SENFSCons.GlobSources()
+objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Scheduler', 'Utils' ] )
 
 for sc in glob.glob("*/SConscript"):
     ob = SConscript(sc)
-    if ob : allob.extend(ob)
+    if ob : objects.extend(ob)
+
+SENFSCons.InstallIncludeFiles(env, [ 'INet.hh', 'Raw.hh', 'DVB.hh', 'UN.hh' ])
 
-Return('allob')
+Return('objects')