source: trunk/server/source4/ntvfs/wscript_build

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 1.6 KB
Line 
1#!/usr/bin/env python
2
3bld.RECURSE('posix')
4bld.RECURSE('common')
5bld.RECURSE('unixuid')
6bld.RECURSE('sysdep')
7
8bld.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
16bld.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
24bld.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
33bld.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
42bld.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
50bld.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
59bld.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
67bld.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
Note: See TracBrowser for help on using the repository browser.