80221Bundle: implemented standard compliant parser for MIHF_Id
[senf.git] / Packets / SConscript
index b39aa65..64aa7a7 100644 (file)
@@ -1,19 +1,19 @@
 # -*- python -*-
 
 Import('env')
-import SENFSCons
+import SENFSCons, glob
 
 ###########################################################################
 
-sources = SENFSCons.GlobSources()
+sources, includes = SENFSCons.Glob(env)
 
 SENFSCons.StandardTargets(env)
-
-SENFSCons.Lib(env,
-              library = 'Packets',
-              sources = sources,
-              LIBS = [ 'Socket', 'Utils' ])
-
+SENFSCons.Lib(env, sources)
 SENFSCons.Doxygen(env, extra_sources = [
-    env.Dia2Png("structure.dia")
+    env.Dia2Png("structure.dia"),
+    env.Dia2Png("MPEGDVBBundle/TLV.dia")
 ])
+SENFSCons.InstallIncludeFiles(env, includes)
+
+SConscript(glob.glob("*/SConscript"))
+