mirror of
https://github.com/samba-team/samba.git
synced 2025-11-22 16:23:49 +03:00
11 lines
346 B
Python
11 lines
346 B
Python
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')
|