mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
9c66f601f1
Commit the classic backwards compatible module which is the default one
(This used to be commit a89cc346b9
)
30 lines
571 B
Makefile
30 lines
571 B
Makefile
# SMB server subsystem
|
|
#
|
|
[MODULE::SERVICE_SMB]
|
|
INIT_FUNCTION = server_service_smb_init
|
|
SUBSYSTEM = service
|
|
OBJ_FILES = smb_server.o
|
|
PRIVATE_PROTO_HEADER = service_smb_proto.h
|
|
PRIVATE_DEPENDENCIES = SMB_SERVER
|
|
|
|
#######################
|
|
# Start SUBSYSTEM SMB
|
|
[SUBSYSTEM::SMB_SERVER]
|
|
OBJ_FILES = \
|
|
handle.o \
|
|
tcon.o \
|
|
session.o \
|
|
blob.o \
|
|
management.o
|
|
PRIVATE_PROTO_HEADER = smb_server_proto.h
|
|
PUBLIC_DEPENDENCIES = \
|
|
share \
|
|
LIBPACKET \
|
|
SMB_PROTOCOL \
|
|
SMB2_PROTOCOL
|
|
# End SUBSYSTEM SMB
|
|
#######################
|
|
|
|
include smb/config.mk
|
|
include smb2/config.mk
|