~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to source4/smb_server/config.mk

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# SMB server subsystem
 
2
#
 
3
[MODULE::SERVICE_SMB]
 
4
INIT_FUNCTION = server_service_smb_init
 
5
SUBSYSTEM = service
 
6
OUTPUT_TYPE = MERGED_OBJ
 
7
PRIVATE_DEPENDENCIES = SMB_SERVER
 
8
 
 
9
SERVICE_SMB_OBJ_FILES = $(smb_serversrcdir)/smb_server.o
 
10
 
 
11
$(eval $(call proto_header_template,$(smb_serversrcdir)/service_smb_proto.h,$(SERVICE_SMB_OBJ_FILES:.o=.c)))
 
12
 
 
13
# samba3 SMB server subsystem
 
14
#
 
15
[MODULE::SERVICE_SAMBA3_SMB]
 
16
INIT_FUNCTION = server_service_samba3_smb_init
 
17
SUBSYSTEM = service
 
18
 
 
19
SERVICE_SAMBA3_SMB_OBJ_FILES = $(smb_serversrcdir)/smb_samba3.o
 
20
 
 
21
#######################
 
22
# Start SUBSYSTEM SMB
 
23
[SUBSYSTEM::SMB_SERVER]
 
24
PUBLIC_DEPENDENCIES = \
 
25
                share \
 
26
                LIBPACKET \
 
27
                SMB_PROTOCOL \
 
28
                SMB2_PROTOCOL
 
29
# End SUBSYSTEM SMB
 
30
#######################
 
31
 
 
32
SMB_SERVER_OBJ_FILES = $(addprefix $(smb_serversrcdir)/, \
 
33
                handle.o \
 
34
                tcon.o \
 
35
                session.o \
 
36
                blob.o \
 
37
                management.o)
 
38
 
 
39
$(eval $(call proto_header_template,$(smb_serversrcdir)/smb_server_proto.h,$(SMB_SERVER_OBJ_FILES:.o=.c)))
 
40
 
 
41
mkinclude smb/config.mk
 
42
mkinclude smb2/config.mk