Makefile revision 1e49577a7fcde812700ded04431b49d67cc57d6d
3468N/A#
500N/A# CDDL HEADER START
500N/A#
500N/A# The contents of this file are subject to the terms of the
500N/A# Common Development and Distribution License (the "License").
500N/A# You may not use this file except in compliance with the License.
500N/A#
500N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
500N/A# or http://www.opensolaris.org/os/licensing.
500N/A# See the License for the specific language governing permissions
500N/A# and limitations under the License.
500N/A#
500N/A# When distributing Covered Code, include this CDDL HEADER in each
500N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
500N/A# If applicable, add the following below this CDDL HEADER, with the
500N/A# fields enclosed by brackets "[]" replaced with your own identifying
500N/A# information: Portions Copyright [yyyy] [name of copyright owner]
500N/A#
500N/A# CDDL HEADER END
500N/A#
500N/A
7034N/A#
500N/A# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
500N/A#
500N/A
500N/ALIBRARY = libsoftcrypto.a
500N/AVERS = .1
3468N/A
3468N/Ainclude ../Makefile.com
3468N/A
3468N/Ainclude $(SRC)/lib/Makefile.lib
3468N/A
3468N/A# Sources need to be redefined after Makefile.lib inclusion.
500N/ASRCS = $(AES_SRC) $(ARCFOUR_SRC) $(BIGNUM_SRC) $(BLOWFISH_SRC) \
3468N/A $(DES_SRC) $(MODES_SRC) $(DH_SRC) $(DSA_SRC) $(RSA_SRC) \
500N/A $(PAD_SRC)
3468N/A
3468N/ASRCDIR = $(SRC)/lib/pkcs11/libsoftcrypto/common
3468N/A
3468N/ALIBS = $(DYNLIB) $(LINTLIB)
3468N/AMAPFILEDIR = ../common
3468N/A
500N/ACFLAGS += $(CCVERBOSE)
3468N/ACPPFLAGS += -I$(CRYPTODIR) -I$(UTSDIR) -D_POSIX_PTHREAD_SEMANTICS
3468N/ALDLIBS += -lcryptoutil -lc
3468N/ALINTFLAGS += $(EXTRA_LINT_FLAGS)
3468N/A
3468N/A# Symbol capabilities objects are i386.
3468N/AEXTPICS = ../capabilities/intel/i386/pics/symcap.o
3468N/A
3468N/A.KEEP_STATE:
3468N/A
500N/Aall: $(LIBS)
3468N/A
3468N/Alint: $(SRCS)
3468N/A
3468N/Ainstall: all $(ROOTLIBS) $(ROOTLINKS) $(ROOTLINT)
3468N/A
500N/Ainclude ../Makefile.targ
3468N/A