mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
25 lines
678 B
Python
25 lines
678 B
Python
srcdir = '.'
|
|
blddir = 'build'
|
|
|
|
def set_options(opt):
|
|
opt.recurse('../talloc')
|
|
|
|
def configure(conf):
|
|
conf.recurse('../talloc')
|
|
|
|
def build(bld):
|
|
bld.recurse('../talloc')
|
|
|
|
COMMON_SOURCE = '''common/check.c common/error.c common/tdb.c common/traverse.c
|
|
common/freelistcheck.c common/lock.c common/dump.c common/freelist.c
|
|
common/io.c common/open.c common/transaction.c'''
|
|
|
|
bld.SAMBA_LIBRARY('tdb',
|
|
COMMON_SOURCE,
|
|
'replace talloc',
|
|
'include')
|
|
|
|
bld.SAMBA_BINARY('tdbtorture',
|
|
'tools/tdbtorture.c',
|
|
'tdb')
|