1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/bin/env python
bld.SAMBA_MODULE('service_smb',
source='service_smb.c',
autoproto='service_smb_proto.h',
subsystem='service',
init_function='server_service_smb_init',
deps='SMB_SERVER netif shares samba-hostconfig',
internal_module=False,
)
bld.SAMBA_MODULE('service_samba3_smb',
source='smb_samba3.c',
subsystem='service',
init_function='server_service_samba3_smb_init',
deps='talloc',
internal_module=False,
)
bld.SAMBA_SUBSYSTEM('SMB_SERVER',
source='handle.c tcon.c session.c blob.c management.c smb_server.c',
autoproto='smb_server_proto.h',
public_deps='share LIBPACKET SMB_PROTOCOL SMB2_PROTOCOL'
)
bld.RECURSE('smb')
bld.RECURSE('smb2')
|