1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-25 00:23:52 +03:00
Files
samba-mirror/source/dsdb/SConscript
Stefan Metzmacher 471c0ca4ab r11052: bring samba4 uptodate with the samba4-winsrepl branch,
before the bad merge

metze
2007-10-10 13:44:43 -05:00

21 lines
533 B
Python

Import('hostenv')
dsdb_ldb_modules = []
dsdb_ldb_modules.append(
hostenv.Library('ldb_objectguid',
['samdb/ldb_modules/objectguid.c']))
dsdb_ldb_modules.append(
hostenv.Library('ldb_samldb',['samdb/ldb_modules/samldb.c']))
dsdb_ldb_modules.append(
hostenv.Library('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.Library('samdb',samdb_files)
hostenv.proto_headers += hostenv.CProtoHeader(samdb_files)