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 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25
26 LIBRARY= libss.a
27 VERS= .1
28
29 SSOBJS= \
30 data.o \
31 error.o \
32 execute_cmd.o \
33 help.o \
34 invocation.o \
35 list_rqs.o \
36 listen.o \
37 pager.o \
38 parse.o \
39 prompt.o \
40 request_tbl.o \
41 requests.o \
42 std_rqs.o
43
44 OBJECTS= $(SSOBJS)
52
53 include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
54
55 #override liblink
56 INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
57
58 CPPFLAGS += -DHAVE_LIBSOCKET=1 -DHAVE_LIBNSL=1 -DHAS_STRDUP=1 \
59 -DUSE_DIRENT_H=1 -DWAIT_USES_INT=1 -DPOSIX_SIGNALS=1 \
60 -D_REENTRANT -DUSE_SIGPROCMASK=1 -DRETSIGTYPE=void \
61 -DHAVE_STDARG_H=1 -DHAVE_STDLIB_H=1 -DHAVE_COMPILE=1 \
62 -DHAVE_UNISTD_H=1 -DHAVE_UMASK=1 -DHAVE_SRAND48=1 \
63 -DHAVESRAND=1 -DHAVESRANDOM=1 -DHAVE_RE_COMP=1 \
64 -DHAVE_RE_EXEC=1 -DHAVE_REGCOMP=1 -DHAVE_REGEXEC=1 \
65 -I$(SRC)/lib/gss_mechs/mech_krb5/include \
66 -I$(SRC)/lib/krb5
67
68 CFLAGS += $(CCVERBOSE) -I..
69 CERRWARN += -_gcc=-Wno-switch
70 CERRWARN += -_gcc=-Wno-unused-variable
71
72 DYNFLAGS += $(KRUNPATH) $(KMECHLIB) $(ZIGNORE)
73
74 LDLIBS += -lc -ltecla
75
76 $(PICS) := CFLAGS += $(XFFLAG)
77
78 .KEEP_STATE:
79
80 all: $(LIBS)
81
82 lint: lintcheck
83
84 # include library targets
85 include ../../Makefile.targ
|
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 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # Copyright (c) 2018, Joyent, Inc.
26
27 LIBRARY= libss.a
28 VERS= .1
29
30 SSOBJS= \
31 data.o \
32 error.o \
33 execute_cmd.o \
34 help.o \
35 invocation.o \
36 list_rqs.o \
37 listen.o \
38 pager.o \
39 parse.o \
40 prompt.o \
41 request_tbl.o \
42 requests.o \
43 std_rqs.o
44
45 OBJECTS= $(SSOBJS)
53
54 include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
55
56 #override liblink
57 INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
58
59 CPPFLAGS += -DHAVE_LIBSOCKET=1 -DHAVE_LIBNSL=1 -DHAS_STRDUP=1 \
60 -DUSE_DIRENT_H=1 -DWAIT_USES_INT=1 -DPOSIX_SIGNALS=1 \
61 -D_REENTRANT -DUSE_SIGPROCMASK=1 -DRETSIGTYPE=void \
62 -DHAVE_STDARG_H=1 -DHAVE_STDLIB_H=1 -DHAVE_COMPILE=1 \
63 -DHAVE_UNISTD_H=1 -DHAVE_UMASK=1 -DHAVE_SRAND48=1 \
64 -DHAVESRAND=1 -DHAVESRANDOM=1 -DHAVE_RE_COMP=1 \
65 -DHAVE_RE_EXEC=1 -DHAVE_REGCOMP=1 -DHAVE_REGEXEC=1 \
66 -I$(SRC)/lib/gss_mechs/mech_krb5/include \
67 -I$(SRC)/lib/krb5
68
69 CFLAGS += $(CCVERBOSE) -I..
70 CERRWARN += -_gcc=-Wno-switch
71 CERRWARN += -_gcc=-Wno-unused-variable
72
73 SMOFF += all_func_returns
74
75 DYNFLAGS += $(KRUNPATH) $(KMECHLIB) $(ZIGNORE)
76
77 LDLIBS += -lc -ltecla
78
79 $(PICS) := CFLAGS += $(XFFLAG)
80
81 .KEEP_STATE:
82
83 all: $(LIBS)
84
85 lint: lintcheck
86
87 # include library targets
88 include ../../Makefile.targ
|