mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
17 lines
358 B
Python
17 lines
358 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('samba-policy',
|
|
source='gp_ldap.c gp_filesys.c gp_manage.c gp_ini.c',
|
|
pc_files='samba-policy.pc',
|
|
public_deps='ldb samba-net',
|
|
vnum='0.0.1',
|
|
pyembed=True,
|
|
public_headers='policy.h'
|
|
)
|
|
|
|
bld.SAMBA_PYTHON('py_policy',
|
|
source='pypolicy.c',
|
|
public_deps='samba-policy pytalloc-util',
|
|
realname='samba/policy.so'
|
|
)
|