source: vendor/current/python/wscript_build

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 705 bytes
Line 
1#!/usr/bin/env python
2
3bld.SAMBA_LIBRARY('samba_python',
4 source=[],
5 deps='LIBPYTHON pytalloc-util pyrpc_util',
6 grouping_library=True,
7 private_library=True,
8 pyembed=True)
9
10bld.SAMBA_SUBSYSTEM('LIBPYTHON',
11 source='modules.c',
12 public_deps='',
13 init_function_sentinel='{NULL,NULL}',
14 deps='talloc',
15 pyext=True,
16 )
17
18
19bld.SAMBA_PYTHON('python_glue',
20 source='pyglue.c',
21 deps='pyparam_util samba-util netif pytalloc-util',
22 realname='samba/_glue.so'
23 )
24
25
26# install out various python scripts for use by make test
27bld.SAMBA_SCRIPT('samba_python_files',
28 pattern='samba/**/*.py',
29 installdir='python')
30
31bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'samba/**/*.py', flat=False)
Note: See TracBrowser for help on using the repository browser.