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 | deps='talloc'
|
---|
30 | )
|
---|
31 |
|
---|
32 |
|
---|
33 | bld.SAMBA_MODULE('ntvfs_cifsposix',
|
---|
34 | source='cifs_posix_cli/vfs_cifs_posix.c cifs_posix_cli/svfs_util.c',
|
---|
35 | autoproto='cifs_posix_cli/proto.h',
|
---|
36 | subsystem='ntvfs',
|
---|
37 | init_function='ntvfs_cifs_posix_init',
|
---|
38 | deps='talloc'
|
---|
39 | )
|
---|
40 |
|
---|
41 |
|
---|
42 | bld.SAMBA_MODULE('ntvfs_print',
|
---|
43 | source='print/vfs_print.c',
|
---|
44 | subsystem='ntvfs',
|
---|
45 | init_function='ntvfs_print_init',
|
---|
46 | deps='talloc'
|
---|
47 | )
|
---|
48 |
|
---|
49 |
|
---|
50 | bld.SAMBA_MODULE('ntvfs_ipc',
|
---|
51 | source='ipc/vfs_ipc.c ipc/ipc_rap.c ipc/rap_server.c',
|
---|
52 | autoproto='ipc/proto.h',
|
---|
53 | subsystem='ntvfs',
|
---|
54 | init_function='ntvfs_ipc_init',
|
---|
55 | deps='NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi credentials DCERPC_SHARE'
|
---|
56 | )
|
---|
57 |
|
---|
58 |
|
---|
59 | bld.SAMBA_MODULE('ntvfs_nbench',
|
---|
60 | source='nbench/vfs_nbench.c',
|
---|
61 | subsystem='ntvfs',
|
---|
62 | init_function='ntvfs_nbench_init',
|
---|
63 | deps='talloc'
|
---|
64 | )
|
---|
65 |
|
---|
66 |
|
---|
67 | bld.SAMBA_LIBRARY('ntvfs',
|
---|
68 | source='ntvfs_base.c ntvfs_generic.c ntvfs_interface.c ntvfs_util.c',
|
---|
69 | autoproto='ntvfs_proto.h',
|
---|
70 | deps='tevent',
|
---|
71 | private_library=True
|
---|
72 | )
|
---|
73 |
|
---|