ctdb-common: Map ENOENT for a missing event script to ENOEXEC
[samba.git] / source3 / librpc / idl / wscript_build
blob3602ba94b51e52801394b7f4c3f76c234ac6f3e7
1 #!/usr/bin/env python
3 import os
5 topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
7 bld.SAMBA_PIDL_LIST('PIDL',
8 '''open_files.idl
9 perfcount.idl secrets.idl
10 smbXsrv.idl
11 leases_db.idl
12 rpcd_witness.idl
13 ''',
14 options='--includedir=%s --header --ndr-parser --client --python' % topinclude,
15 output_dir='../gen_ndr')
17 bld.SAMBA_PIDL_LIST('PIDL',
18 '''
19 libnetapi.idl
20 rpc_host.idl
21 ''',
22 options='--includedir=%s --header --ndr-parser' % topinclude,
23 output_dir='../gen_ndr',
24 generate_tables=False)
26 absinclude=os.path.join(bld.srcnode.abspath(), 'bin/default/include')
28 bld.SAMBA_PIDL_LIST('PIDL',
29 '''
30 libnet_join.idl ads.idl
31 ''',
32 options='--includedir=%s --includedir=%s --header --ndr-parser' % (topinclude, absinclude),
33 output_dir='../gen_ndr',
34 generate_tables=False)