1 #
2 # CDDL HEADER START
3 #
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21
22 #
23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 # Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
26 #
27 # Copyright 2013 Nexenta Systems, Inc. All rights reserved.
28 #
29
30 #
31 # lib/libsmbfs/Makefile.com
32 #
33
34 LIBRARY= libsmbfs.a
35 VERS= .1
36
37 # leaving out: kiconv.o
38
39 OBJ_LIB=\
40 acl_api.o \
41 acl_print.o \
42 charsets.o \
43 cfopt.o \
44 connect.o \
45 crypt.o \
46 ctx.o \
47 derparse.o \
48 file.o \
49 findvc.o \
50 getaddr.o \
51 iod_cl.o \
52 iod_wk.o \
53 keychain.o \
54 krb5ssp.o \
55 mbuf.o \
56 nb.o \
57 nb_name.o \
58 nb_net.o \
59 nb_ssn.o \
60 nbns_rq.o \
61 negprot.o \
62 newvc.o \
63 nls.o \
64 ntlm.o \
65 ntlmssp.o \
66 print.o \
67 rap.o \
68 rcfile.o \
69 rq.o \
70 signing.o \
71 spnego.o \
72 spnegoparse.o \
73 ssnsetup.o \
74 ssp.o \
75 subr.o \
76 ui-sun.o \
77 utf_str.o
78
79 OBJ_CMN= smbfs_ntacl.o
80
81 OBJECTS= $(OBJ_LIB) $(OBJ_CMN)
82
83 include $(SRC)/lib/Makefile.lib
84
85 LIBS = $(DYNLIB) $(LINTLIB)
86
87 SRCDIR= ../smb
88 CMNDIR= $(SRC)/common/smbclnt
89
90 SRCS= $(OBJ_LIB:%.o=$(SRCDIR)/%.c) \
91 $(OBJ_CMN:%.o=$(CMNDIR)/%.c)
92
93 $(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
94
95 CSTD= $(CSTD_GNU99)
96
97 LDLIBS += -lsocket -lnsl -lc -lmd -lpkcs11 -lkrb5 -lsec -lidmap
98
99 # normal warnings...
100 CFLAGS += $(CCVERBOSE)
101
102 CERRWARN += -_gcc=-Wno-uninitialized
103 CERRWARN += -_gcc=-Wno-unused-variable
104
105 CPPFLAGS += -D__EXTENSIONS__ -D_REENTRANT -DMIA \
106 -I$(SRCDIR) -I.. -I../netsmb \
107 -I$(SRC)/uts/common \
108 -I$(SRC)/common/smbclnt
109
110 # Debugging
111 ${NOT_RELEASE_BUILD} CPPFLAGS += -DDEBUG
112
113 # uncomment these for dbx debugging
114 #COPTFLAG = -g
115 #CTF_FLAGS =
116 #CTFCONVERT_O=
117 #CTFMERGE_LIB=
118
119 # Filter out the less important lint.
120 # See lgrep.awk
121 LGREP = $(AWK) -f $(SRCDIR)/lgrep.awk
122 LTAIL += 2>&1 | $(LGREP)
123
124 all: $(LIBS)
125
126 lint: lintcheck_t
127
128 include ../../Makefile.targ
129
130 lintcheck_t: $$(SRCS)
131 $(LINT.c) $(LINTCHECKFLAGS) $(SRCS) $(LDLIBS) $(LTAIL)
132
133 objs/%.o pics/%.o: $(CMNDIR)/%.c
134 $(COMPILE.c) -o $@ $<
135 $(POST_PROCESS_O)
136
137 .KEEP_STATE: