mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
1409c97899
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Nov 15 03:04:41 UTC 2010 on sn-devel-104
30 lines
672 B
Python
30 lines
672 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=True
|
|
)
|
|
|
|
|
|
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')
|