1#!/usr/bin/env python
2
3import os
4
5topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
6
7bld.SAMBA_PIDL_LIST('PIDL',
8                    '''open_files.idl
9                       perfcount.idl secrets.idl
10                       smbXsrv.idl
11                       leases_db.idl
12                    ''',
13                    options='--includedir=%s --header --ndr-parser' % topinclude,
14                    output_dir='../gen_ndr')
15
16bld.SAMBA_PIDL_LIST('PIDL',
17                    '''libnetapi.idl libnet_join.idl
18                    ''',
19                    options='--includedir=%s --header --ndr-parser' % topinclude,
20                    output_dir='../gen_ndr',
21                    generate_tables=False)
22