blob: b93cc342cd8dc26ca98666c195a815e20e7b2e70 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Import('hostenv')
# tastes like -*- python -*-
Import('dynconfig basic')
param_files = ['loadparm.c','params.c']
param = hostenv.Library('loadparm',[param_files,dynconfig,basic])
hostenv.proto_headers += hostenv.CProtoHeader('proto.h', param_files)
Export('param')
generic = hostenv.Library('generic',['generic.c'])
Export('generic')
|