Makefile revision b6c3f7863936abeae522e48a13887dddeb691a45
200N/A#
200N/A# CDDL HEADER START
200N/A#
200N/A# The contents of this file are subject to the terms of the
200N/A# Common Development and Distribution License (the "License").
200N/A# You may not use this file except in compliance with the License.
200N/A#
200N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
200N/A# or http://www.opensolaris.org/os/licensing.
200N/A# See the License for the specific language governing permissions
200N/A# and limitations under the License.
200N/A#
200N/A# When distributing Covered Code, include this CDDL HEADER in each
200N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
200N/A# If applicable, add the following below this CDDL HEADER, with the
200N/A# fields enclosed by brackets "[]" replaced with your own identifying
200N/A# information: Portions Copyright [yyyy] [name of copyright owner]
200N/A#
200N/A# CDDL HEADER END
200N/A#
200N/A#
200N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
3857N/A# Use is subject to license terms.
200N/A#
200N/A# ident "%Z%%M% %I% %E% SMI"
200N/A#
200N/A# lib/pkcs11/pkcs11_softtoken/sparc/Makefile
814N/A
206N/AAES_PSR_OBJECTS = aes_crypt_sparc.o
200N/AARCFOUR_PSR_OBJECTS = arcfour_crypt_sparc.o
3866N/ADES_PSR_OBJECTS = des_crypt_sparc.o
618N/ARSA_PSR_OBJECTS =
200N/ABIGNUM_PSR_OBJECTS = mont_mulf_sparc.o
200N/ABIGNUM_CFG = -DUSE_FLOATING_POINT
844N/A
3866N/Ainclude ../Makefile.com
903N/ACFLAGS += -Dsun4u
1273N/ACPPFLAGS += -DMP_USE_UINT_DIGIT
3866N/A
3661N/Ainstall: all $(ROOTLIBS) $(ROOTLINKS)
200N/A
200N/A
200N/Apics/aes_crypt_sparc.o: $(AESDIR)/sun4u/aes_crypt_asm.s
200N/A $(COMPILE.s) $(AS_BIGPICFLAGS) -P -DPIC -xarch=v8plus -o $@ \
200N/A $(AESDIR)/sun4u/aes_crypt_asm.s
200N/A $(POST_PROCESS_O)
200N/A
200N/Apics/arcfour_crypt_sparc.o: $(ARCFOURDIR)/sun4u/arcfour_crypt_asm.s
200N/A $(COMPILE.s) $(AS_BIGPICFLAGS) -P -DPIC -xarch=v8plus -o $@ \
206N/A $(ARCFOURDIR)/sun4u/arcfour_crypt_asm.s
206N/A $(POST_PROCESS_O)
206N/A
206N/Apics/des_crypt_sparc.o: $(DESDIR)/sun4u/des_crypt_asm.s
206N/A $(COMPILE.s) $(AS_BIGPICFLAGS) -P -DPIC -xarch=v8plus -o $@ \
206N/A $(DESDIR)/sun4u/des_crypt_asm.s
200N/A $(POST_PROCESS_O)
206N/A
200N/Apics/mont_mulf_sparc.o: $(BIGNUMDIR)/sun4u/mont_mulf_v8plus.s
206N/A $(COMPILE.s) $(AS_BIGPICFLAGS) -xarch=v8plus -o $@ \
206N/A $(BIGNUMDIR)/sun4u/mont_mulf_v8plus.s
206N/A $(POST_PROCESS_O)
3866N/A