s4-rpc_server: split out DCERPC_SHARE as a separate subsystem
[sfrench/samba-autobuild/.git] / source4 / ntvfs / wscript_build
1 #!/usr/bin/env python
2
3 bld.RECURSE('posix')
4 bld.RECURSE('common')
5 bld.RECURSE('unixuid')
6 bld.RECURSE('sysdep')
7
8 bld.SAMBA_MODULE('ntvfs_cifs',
9         source='cifs/vfs_cifs.c',
10         subsystem='ntvfs',
11         init_function='ntvfs_cifs_init',
12         deps='LIBCLI_SMB LIBCLI_RAW'
13         )
14
15
16 bld.SAMBA_MODULE('ntvfs_smb2',
17         source='smb2/vfs_smb2.c',
18         subsystem='ntvfs',
19         init_function='ntvfs_smb2_init',
20         deps='LIBCLI_SMB LIBCLI_RAW'
21         )
22
23
24 bld.SAMBA_MODULE('ntvfs_simple',
25         source='simple/vfs_simple.c simple/svfs_util.c',
26         autoproto='simple/proto.h',
27         subsystem='ntvfs',
28         init_function='ntvfs_simple_init'
29         )
30
31
32 bld.SAMBA_MODULE('ntvfs_cifsposix',
33         source='cifs_posix_cli/vfs_cifs_posix.c cifs_posix_cli/svfs_util.c',
34         autoproto='cifs_posix_cli/proto.h',
35         subsystem='ntvfs',
36         init_function='ntvfs_cifs_posix_init'
37         )
38
39
40 bld.SAMBA_MODULE('ntvfs_print',
41         source='print/vfs_print.c',
42         subsystem='ntvfs',
43         init_function='ntvfs_print_init'
44         )
45
46
47 bld.SAMBA_MODULE('ntvfs_ipc',
48         source='ipc/vfs_ipc.c ipc/ipc_rap.c ipc/rap_server.c',
49         autoproto='ipc/proto.h',
50         subsystem='ntvfs',
51         init_function='ntvfs_ipc_init',
52         deps='NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi CREDENTIALS DCERPC_SHARE'
53         )
54
55
56 bld.SAMBA_MODULE('ntvfs_nbench',
57         source='nbench/vfs_nbench.c',
58         subsystem='ntvfs',
59         init_function='ntvfs_nbench_init'
60         )
61
62
63 bld.SAMBA_LIBRARY('ntvfs',
64                   source='ntvfs_base.c ntvfs_generic.c ntvfs_interface.c ntvfs_util.c',
65                   autoproto='ntvfs_proto.h',
66                   deps='tevent',
67                   private_library=True
68                   )
69