mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
eedd127c25
Pair-programmed-with: Garming Sam <garming@catalyst.net.nz> Signed-off-by: Garming Sam <garming@catalyst.net.nz> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
15 lines
465 B
Python
15 lines
465 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''libnetapi.idl open_files.idl
|
|
perfcount.idl secrets.idl libnet_join.idl
|
|
smbXsrv.idl
|
|
leases_db.idl
|
|
''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr')
|