998 obsolete DMA driver interfaces should be removed
[illumos-gate.git] / usr / src / lib / pkcs11 / pkcs11_kms / Makefile.com
blobd9f7e19b224402f38842fbf3f92828ee51d5693a
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
21 # Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 LIBRARY= pkcs11_kms.a
25 VERS= .1
27 CORE_OBJECTS= \
28         kmsAESCrypt.o           \
29         kmsAttributeUtil.o      \
30         kmsDecrypt.o            \
31         kmsDigest.o             \
32         kmsDualCrypt.o          \
33         kmsEncrypt.o            \
34         kmsGeneral.o            \
35         kmsKeys.o               \
36         kmsKeystoreUtil.o       \
37         kmsObject.o             \
38         kmsObjectUtil.o         \
39         kmsRand.o               \
40         kmsSession.o            \
41         kmsSessionUtil.o        \
42         kmsSign.o               \
43         kmsSlottable.o          \
44         kmsSlotToken.o          \
45         kmsVerify.o
47 OBJECTS= $(CORE_OBJECTS)        
49 AESDIR= $(SRC)/common/crypto/aes
50 KMSAGENTDIR= $(SRC)/lib/libkmsagent/common
52 include $(SRC)/lib/Makefile.lib
54 #       set signing mode
55 POST_PROCESS_SO +=      ; $(ELFSIGN_CRYPTO)
57 SRCDIR=         ../common
58 CORESRCS =      $(CORE_OBJECTS:%.o=$(SRCDIR)/%.c)
60 LIBS    =       $(DYNLIB)
61 LDLIBS  +=      -lc -lcryptoutil -lsoftcrypto -lmd -lavl -lkmsagent
63 CFLAGS  +=      $(CCVERBOSE)
65 CPPFLAGS +=     -DUSESOLARIS_AES -DKMSUSERPKCS12
67 ROOTLIBDIR=     $(ROOT)/usr/lib/security
68 ROOTLIBDIR64=   $(ROOT)/usr/lib/security/$(MACH64)
70 lint \
71 pics/kmsAESCrypt.o \
72 pics/kmsEncrypt.o \
73 pics/kmsDecrypt.o \
74 pics/kmsSlotToken.o \
75 pics/kmsKeystoreUtil.o \
76 pics/kmsAttributeUtil.o := CPPFLAGS += -I$(AESDIR) -I$(SRC)/common/crypto
78 CPPFLAGS += -I$(KMSAGENTDIR)
80 .KEEP_STATE:
82 all:    $(LIBS)
85 # -lkmsagent is not here because it is C++ and we don't lint C++ code.
87 LINTLDLIBS =  -lc -lcryptoutil -lavl -lmd -lsoftcrypto
89 LINTFLAGS64 += -errchk=longptr64 -errtags=yes
91 lintcheck := SRCS = $(CORESRCS)
92 lintcheck := LDLIBS = -L$(ROOT)/lib -L$(ROOT)/usr/lib $(LINTLDLIBS)
94 lintother: $$(OSRCS)
95         $(LINT.c) $(LINTCHECKFLAGS) $(OSRCS) $(LINTLDLIBS)
97 lint: lintcheck
99 include $(SRC)/lib/Makefile.targ