X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FProtocols%2FRaw%2FSConscript;h=7c58379ddb7a6793db0595d183fde608805134eb;hb=3863d46dd898b7bc35ea8c6ccd8563b18762a6b6;hp=4e77b0021b8bc96f8f5ddc61f762fc60255f5852;hpb=6bb3fa3caaa41dab4d5b451ca27e70f9e55e49d6;p=senf.git diff --git a/Socket/Protocols/Raw/SConscript b/Socket/Protocols/Raw/SConscript index 4e77b00..7c58379 100644 --- a/Socket/Protocols/Raw/SConscript +++ b/Socket/Protocols/Raw/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','Raw.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)