1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-31 17:18:04 +03:00
samba-mirror/source4/dsdb/SConscript
2007-10-10 13:38:56 -05:00

21 lines
557 B
Python

Import('hostenv')
dsdb_ldb_modules = []
dsdb_ldb_modules.append(
hostenv.StaticLibrary('ldb_objectguid',
['samdb/ldb_modules/objectguid.c']))
dsdb_ldb_modules.append(
hostenv.StaticLibrary('ldb_samldb',['samdb/ldb_modules/samldb.c']))
dsdb_ldb_modules.append(
hostenv.StaticLibrary('ldb_samba3sam',
['samdb/ldb_modules/samba3sam.c']))
Export('dsdb_ldb_modules')
samdb_files = ['samdb/samdb.c','samdb/samdb_privilege.c','common/flag_mapping.c']
hostenv.StaticLibrary('samdb',samdb_files)
hostenv.proto_headers += hostenv.CProtoHeader(samdb_files)