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 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 #
26
27 LIBRARY= pkinit.a
28 VERS= .1
29
30 PKINIT_OBJS= \
31 pkinit_accessor.o \
32 pkinit_clnt.o \
33 pkinit_crypto_openssl.o \
34 pkinit_identity.o \
35 pkinit_lib.o \
36 pkinit_matching.o \
37 pkinit_profile.o \
38 pkinit_srv.o
39
40
41 OBJECTS= $(PKINIT_OBJS)
42
43 # include library definitions
44 include $(SRC)/lib/krb5/Makefile.lib
45
55 #override liblink
56 INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
57
58
59 CPPFLAGS += -I$(SRC)/lib/krb5 \
60 -I$(SRC)/lib/krb5/kdb \
61 -I$(SRC)/lib/gss_mechs/mech_krb5/include \
62 -I$(SRC)/lib/gss_mechs/mech_krb5/krb5/os \
63 -I$(SRC)/lib/gss_mechs/mech_krb5/include/krb5 \
64 -I$(SRC)/uts/common/gssapi/include/ \
65 -I$(SRC)/uts/common/gssapi/mechs/krb5/include \
66 -I$(SRC)
67
68 CERRWARN += -_gcc=-Wno-uninitialized
69 CERRWARN += -_gcc=-Wno-unused-function
70
71 CFLAGS += $(CCVERBOSE) -I..
72 DYNFLAGS += $(KRUNPATH) $(KMECHLIB) -znodelete
73 LDLIBS += -L $(ROOTLIBDIR) -lcrypto -lc
74
75 ROOTLIBDIR= $(ROOT)/usr/lib/krb5/plugins/preauth
76
77 $(ROOTLIBDIR):
78 $(INS.dir)
79
80 .KEEP_STATE:
81
82 all: $(LIBS)
83
84 lint: lintcheck
85
86 # include library targets
87 include $(SRC)/lib/krb5/Makefile.targ
88
89 FRC:
90
91 generic.po: FRC
92 $(RM) messages.po
93 $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext ../*.[ch]`
94 $(SED) "/^domain/d" messages.po > $@
|
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 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # Copyright 2017 RackTop Systems.
26 #
27 #
28
29 LIBRARY= pkinit.a
30 VERS= .1
31
32 PKINIT_OBJS= \
33 pkinit_accessor.o \
34 pkinit_clnt.o \
35 pkinit_crypto_openssl.o \
36 pkinit_identity.o \
37 pkinit_lib.o \
38 pkinit_matching.o \
39 pkinit_profile.o \
40 pkinit_srv.o
41
42
43 OBJECTS= $(PKINIT_OBJS)
44
45 # include library definitions
46 include $(SRC)/lib/krb5/Makefile.lib
47
57 #override liblink
58 INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
59
60
61 CPPFLAGS += -I$(SRC)/lib/krb5 \
62 -I$(SRC)/lib/krb5/kdb \
63 -I$(SRC)/lib/gss_mechs/mech_krb5/include \
64 -I$(SRC)/lib/gss_mechs/mech_krb5/krb5/os \
65 -I$(SRC)/lib/gss_mechs/mech_krb5/include/krb5 \
66 -I$(SRC)/uts/common/gssapi/include/ \
67 -I$(SRC)/uts/common/gssapi/mechs/krb5/include \
68 -I$(SRC)
69
70 CERRWARN += -_gcc=-Wno-uninitialized
71 CERRWARN += -_gcc=-Wno-unused-function
72
73 CFLAGS += $(CCVERBOSE) -I..
74 DYNFLAGS += $(KRUNPATH) $(KMECHLIB) -znodelete
75 LDLIBS += -L $(ROOTLIBDIR) -lcrypto -lc
76
77 # Allow libcrypto to be taken from outside the proto area.
78 $(ADJUNCT_PROTO_NOT_SET)DYNFLAGS += $(ZASSERTDEFLIB)=libcrypto.so
79
80 ROOTLIBDIR= $(ROOT)/usr/lib/krb5/plugins/preauth
81
82 $(ROOTLIBDIR):
83 $(INS.dir)
84
85 .KEEP_STATE:
86
87 all: $(LIBS)
88
89 lint: lintcheck
90
91 # include library targets
92 include $(SRC)/lib/krb5/Makefile.targ
93
94 FRC:
95
96 generic.po: FRC
97 $(RM) messages.po
98 $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext ../*.[ch]`
99 $(SED) "/^domain/d" messages.po > $@
|