X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FProtocols%2FDVB%2FSConscript;h=0b56081dbde55c65d38e387bcabe87c7801b05d6;hb=532240d72e09e19e57fac9bb55c2560b9c9e5b97;hp=ffad3452fa8b216452dcf62894d82c2365be9872;hpb=739eecfbeffc911e700660864ff1d7f05c6283d0;p=senf.git diff --git a/Socket/Protocols/DVB/SConscript b/Socket/Protocols/DVB/SConscript index ffad345..0b56081 100644 --- a/Socket/Protocols/DVB/SConscript +++ b/Socket/Protocols/DVB/SConscript @@ -5,20 +5,12 @@ import SENFSCons, glob ########################################################################### +SConscript(glob.glob("*/SConscript")) + 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') ]) -sources = SENFSCons.GlobSources() - -allob = [] - -allob.extend( - SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) ) - -for sc in glob.glob("*/SConscript"): - ob = SConscript(sc) - if ob : allob.extend(ob) - -SENFSCons.InstallIncludeFiles(env, [ 'DVB.hh', 'all_includes.hh' ]) +sources, includes = SENFSCons.Glob(env) -Return('allob') +SENFSCons.Lib(env, sources) +SENFSCons.InstallIncludeFiles(env, includes)