mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
6b73c29bb7
(This used to be commit e88f5f423f
)
21 lines
557 B
Python
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)
|