bbf72625be2bb952f47d852874250a1c2ed4971a
[senf.git] / Socket / Protocols / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons, glob
5
6 ###########################################################################
7
8 SENFSCons.StandardTargets(env)
9
10 sources = SENFSCons.GlobSources()
11 objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Socket', 'Utils' ] )
12
13 for sc in glob.glob("*/SConscript"):
14     ob = SConscript(sc)
15     if ob : objects.extend(ob)
16
17 SENFSCons.InstallIncludeFiles(env, [ 'INet.hh', 'Raw.hh' ])
18
19 Return('objects')