source: trunk/server/source4/smb_server/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: 703 bytes
Line 
1#!/usr/bin/env python
2
3bld.SAMBA_MODULE('service_smb',
4 source='service_smb.c',
5 autoproto='service_smb_proto.h',
6 subsystem='service',
7 init_function='server_service_smb_init',
8 deps='SMB_SERVER netif shares samba-hostconfig',
9 internal_module=False,
10 )
11
12
13bld.SAMBA_MODULE('service_samba3_smb',
14 source='smb_samba3.c',
15 subsystem='service',
16 init_function='server_service_samba3_smb_init',
17 deps='talloc',
18 internal_module=False,
19 )
20
21
22bld.SAMBA_SUBSYSTEM('SMB_SERVER',
23 source='handle.c tcon.c session.c blob.c management.c smb_server.c',
24 autoproto='smb_server_proto.h',
25 public_deps='share LIBPACKET SMB_PROTOCOL SMB2_PROTOCOL'
26 )
27
28bld.RECURSE('smb')
29bld.RECURSE('smb2')
Note: See TracBrowser for help on using the repository browser.