mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
26 lines
540 B
Python
26 lines
540 B
Python
VERSION = '2.0.1'
|
|
|
|
srcdir = '.'
|
|
blddir = 'build'
|
|
|
|
LIBREPLACE_DIR='../replace'
|
|
|
|
def set_options(opt):
|
|
opt.recurse(LIBREPLACE_DIR)
|
|
|
|
def configure(conf):
|
|
conf.sub_config(LIBREPLACE_DIR)
|
|
conf.SAMBA_CONFIG_H()
|
|
|
|
def build(bld):
|
|
bld.add_subdirs(LIBREPLACE_DIR)
|
|
|
|
bld.SAMBA_LIBRARY('talloc',
|
|
'talloc.c',
|
|
libdeps='replace',
|
|
vnum=VERSION)
|
|
|
|
bld.SAMBA_BINARY('talloc_testsuite',
|
|
'testsuite.c testsuite_main.c',
|
|
'talloc')
|