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

40 lines
848 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-util pyrpc_util',
2010-10-24 01:36:32 +04:00
grouping_library=True,
private_library=True,
pyembed=True)
bld.SAMBA_SUBSYSTEM('LIBPYTHON',
2010-10-24 01:36:32 +04:00
source='modules.c',
2010-10-24 23:17:43 +04:00
public_deps='',
init_function_sentinel='{NULL,NULL}',
2010-10-24 01:36:32 +04:00
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-util',
2010-10-24 01:36:32 +04:00
realname='samba/_glue.so'
)
# install out various python scripts for use by make test
bld.SAMBA_SCRIPT('samba_python_files',
pattern='samba/**/*.py',
installdir='python')
bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'samba/**/*.py', flat=False)