Use full path to dlinklist.h in includes.
[obnox/samba/samba-obnox.git] / python / wscript_build
1 #!/usr/bin/env python
2
3 bld.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
10 bld.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
19 bld.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
27 bld.SAMBA_SCRIPT('samba_python_files',
28                  pattern='samba/**/*.py',
29                  installdir='python')
30
31 bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'samba/**/*.py', flat=False)