1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/source4/scripting/python/wscript_build

44 lines
930 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
bld.SAMBA_LIBRARY('samba_python',
2010-10-24 01:36:32 +04:00
source=[],
deps='LIBPYTHON PYTALLOC pyrpc_util',
grouping_library=True,
private_library=True,
pyext=True)
bld.SAMBA_SUBSYSTEM('LIBPYTHON',
2010-10-24 01:36:32 +04:00
source='modules.c',
public_deps='EXT_LIB_PYTHON',
init_function_sentinal='{NULL,NULL}',
deps='talloc',
pyext=True,
)
bld.SAMBA_PYTHON('python_uuid',
2010-10-24 01:36:32 +04:00
source='uuidmodule.c',
deps='ndr',
2010-10-24 01:36:32 +04:00
realname='uuid.so',
enabled = float(bld.env.PYTHON_VERSION) <= 2.4
)
bld.SAMBA_PYTHON('python_glue',
2010-10-24 01:36:32 +04:00
source='pyglue.c',
deps='pyparam_util samba-util netif PYTALLOC',
2010-10-24 01:36:32 +04:00
realname='samba/_glue.so'
)
# create a dummy subsystem for EXT_LIB_PYTHON
bld.SAMBA_SUBSYSTEM('EXT_LIB_PYTHON', '')
# install out various python scripts for use by make test
bld.SAMBA_SCRIPT('samba_python',
pattern='samba/**/*.py',
installdir='python')
bld.INSTALL_WILDCARD('${PYTHONDIR}', 'samba/**/*.py', flat=False)