mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
1cdc2d7dd6
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Nov 22 20:28:14 CET 2010 on sn-devel-104
30 lines
674 B
Python
30 lines
674 B
Python
#!/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')
|