mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
41b1f97943
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
17 lines
614 B
Python
17 lines
614 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''messaging.idl libnetapi.idl notify.idl
|
|
perfcount.idl secrets.idl libnet_join.idl server_id.idl''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'wbint.idl',
|
|
options='--includedir=%s --header --ndr-parser --samba3-ndr-server --client' % topinclude,
|
|
output_dir='../gen_ndr')
|