1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-12 23:17:06 +03:00
Andrew Tridgell 844acb2260 build: waf quicktest nearly works
Rewrote wafsamba using a new dependency handling system, and started
adding the waf test code
2010-04-06 20:26:48 +10:00

39 lines
1.2 KiB
Plaintext

bld.SAMBA_PYTHON('LIBPYTHON',
source='modules.c',
public_deps='EXT_LIB_PYTHON',
init_function_sentinal='{NULL,NULL}',
deps='PYTALLOC',
)
bld.SAMBA_PYTHON('PYTALLOC',
source='../../../lib/talloc/pytalloc.c',
public_deps='EXT_LIB_PYTHON talloc'
)
bld.SAMBA_PYTHON('python_uuid',
source='uuidmodule.c',
deps='LIBNDR',
realname='uuid.so'
)
bld.SAMBA_PYTHON('python_glue',
source='pyglue.c',
# _PY_FILES='$(shell find samba ../lib/subunit/python -type f -name "*.py")',
deps='LIBNDR ldb SAMDB CREDENTIALS pyldb python_dcerpc_misc python_dcerpc_security pyauth pyldb_util pyparam_util',
# EPYDOC_OPTIONS='--no-private --url http://www.samba.org/ --no-sourcecode',
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')