blob: 4dfca40d4a5c6aefbfce181c23ee3dc602fef6ff (
plain)
1
2
3
4
5
6
7
8
|
Import('hostenv')
# tastes like -*- python -*-
Import('dynconfig basic')
param = hostenv.StaticLibrary('loadparm',['loadparm.c','params.c',dynconfig,basic])
Export('param')
generic = hostenv.StaticLibrary('generic',['generic.c'])
Export('generic')
|