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