Implement libPacket protocol bundles
[senf.git] / Packets / SConscript
index 9db975b..27f0650 100644 (file)
@@ -1,13 +1,21 @@
 # -*- python -*-
 
 Import('env')
-import SENFSCons
+import SENFSCons, glob
 
 ###########################################################################
 
 sources = SENFSCons.GlobSources()
+
 SENFSCons.StandardTargets(env)
-SENFSCons.Lib(env, 'Packets',  sources, )
+
+SENFSCons.Lib(env,
+              library = 'Packets',
+              sources = sources,
+              LIBS = [ 'Socket', 'Utils' ])
+
 SENFSCons.Doxygen(env, extra_sources = [
     env.Dia2Png("structure.dia")
-    ])
+])
+
+SConscript(glob.glob("*/SConscript"))