X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FProtocols%2FDVB%2FSConscript;h=0b56081dbde55c65d38e387bcabe87c7801b05d6;hb=532240d72e09e19e57fac9bb55c2560b9c9e5b97;hp=4e77b0021b8bc96f8f5ddc61f762fc60255f5852;hpb=2c4c9deecc7491fbfc916aeb41074dcb76e8a2c2;p=senf.git diff --git a/Socket/Protocols/DVB/SConscript b/Socket/Protocols/DVB/SConscript index 4e77b00..0b56081 100644 --- a/Socket/Protocols/DVB/SConscript +++ b/Socket/Protocols/DVB/SConscript @@ -5,15 +5,12 @@ import SENFSCons, glob ########################################################################### -sources = SENFSCons.GlobSources() +SConscript(glob.glob("*/SConscript")) -allob = [] +SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh") + if f not in ('all_includes.hh','DVB.hh') and not f.endswith('.test.hh') ]) -allob.extend( - SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) ) +sources, includes = SENFSCons.Glob(env) -for sc in glob.glob("*/SConscript"): - ob = SConscript(sc) - if ob : allob.extend(ob) - -Return('allob') +SENFSCons.Lib(env, sources) +SENFSCons.InstallIncludeFiles(env, includes)