X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FProtocols%2FSConscript;h=0a99e52b2cf9b9a1647f2e7972b90cd0b9242921;hb=a7adef379311a16ab413aadd32f044c6e339d711;hp=c5ca1ad2e0d5d39858ad3d8fafe8acd2e46c4cd1;hpb=739eecfbeffc911e700660864ff1d7f05c6283d0;p=senf.git diff --git a/Socket/Protocols/SConscript b/Socket/Protocols/SConscript index c5ca1ad..0a99e52 100644 --- a/Socket/Protocols/SConscript +++ b/Socket/Protocols/SConscript @@ -5,17 +5,15 @@ import SENFSCons, glob ########################################################################### -sources = SENFSCons.GlobSources() - -allob = [] +SENFSCons.StandardTargets(env) -allob.extend( - SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) ) +sources = SENFSCons.GlobSources() +objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] ) for sc in glob.glob("*/SConscript"): ob = SConscript(sc) - if ob : allob.extend(ob) + if ob : objects.extend(ob) -SENFSCons.InstallIncludeFiles(env, [ 'INet.hh', 'Raw.hh' ]) +SENFSCons.InstallIncludeFiles(env, [ 'INet.hh', 'Raw.hh', 'DVB.hh', 'UN.hh' ]) -Return('allob') +Return('objects')