X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FProtocols%2FSConscript;h=6e76b2540afc3aa5fdc3e94f1223840e17ba6b4e;hb=fedff27b03212f7662600c6f5689967489dd0928;hp=3b7b1581f8626aeab9f377610d472a7d23b30e28;hpb=b41b8147c7a2d40e2f69471e183840be8a0b95da;p=senf.git diff --git a/Socket/Protocols/SConscript b/Socket/Protocols/SConscript index 3b7b158..6e76b25 100644 --- a/Socket/Protocols/SConscript +++ b/Socket/Protocols/SConscript @@ -5,15 +5,10 @@ import SENFSCons, glob ########################################################################### -SENFSCons.StandardTargets(env) - -sources = SENFSCons.GlobSources() -objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) +SConscript(glob.glob("*/SConscript")) -for sc in glob.glob("*/SConscript"): - ob = SConscript(sc) - if ob : objects.extend(ob) - -SENFSCons.InstallIncludeFiles(env, [ 'INet.hh', 'Raw.hh', 'DVB.hh' ]) +SENFSCons.StandardTargets(env) -Return('objects') +sources, includes = SENFSCons.Glob(env) +SENFSCons.Lib(env, sources) +SENFSCons.InstallIncludeFiles(env, includes)