1# 2# CDDL HEADER START 3# 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. 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# 23# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. 24# 25 26# 27# lib/pkcs11/libsoftcrypto/amd64/Makefile 28# 29 30LIBRARY= libsoftcrypto.a 31VERS= .1 32 33AES_PSM_OBJS= aes_amd64.o aes_intel.o aeskey.o 34AES_PSM_SRC= $(AES_DIR)/$(MACH64)/aes_amd64.s $(AES_DIR)/$(MACH64)/aes_intel.s \ 35 $(AES_DIR)/$(MACH64)/aeskey.c 36 37ARCFOUR_PSM_OBJS= arcfour-x86_64.o 38ARCFOUR_PSM_SRC= arcfour-x86_64.s 39 40BIGNUM_PSM_OBJS= bignum_amd64.o bignum_amd64_asm.o 41BIGNUM_PSM_SRC= $(BIGNUM_DIR)/$(MACH64)/bignum_amd64.c \ 42 $(BIGNUM_DIR)/$(MACH64)/bignum_amd64_asm.s 43 44include ../Makefile.com 45include $(SRC)/lib/Makefile.lib.64 46 47CFLAGS += -xO4 -xcrossfile 48BIGNUM_FLAGS += -DPSR_MUL 49LINTFLAGS64 += $(BIGNUM_FLAGS) $(AES_FLAGS) $(ARCFOUR_FLAGS) 50CLEANFILES += arcfour-x86_64.s 51 52LDLIBS += -lcryptoutil 53LIBS += $(LINTLIB) 54 55install: all $(ROOTLIBS64) $(ROOTLINKS64) $(ROOTLINT64) 56 57arcfour-x86_64.s: $(ARCFOUR_DIR)/amd64/arcfour-x86_64.pl 58 $(PERL) $? $@ 59 60pics/%.o: $(AES_DIR)/$(MACH64)/%.c 61 $(COMPILE.c) $(AES_FLAGS) -o $@ $< 62 $(POST_PROCESS_O) 63 64pics/%.o: $(AES_DIR)/$(MACH64)/%.s 65 $(COMPILE.s) $(AES_FLAGS) -o $@ $< 66 $(POST_PROCESS_O) 67 68pics/%.o: $(BIGNUM_DIR)/$(MACH64)/%.c 69 $(COMPILE.c) $(BIGNUM_FLAGS) -o $@ $< 70 $(POST_PROCESS_O) 71 72pics/%.o: $(BIGNUM_DIR)/$(MACH64)/%.s 73 $(COMPILE64.s) $(BIGNUM_FLAGS) -o $@ $< 74 $(POST_PROCESS_O) 75 76pics/%.o: arcfour-x86_64.s 77 $(COMPILE64.s) $(ARCFOUR_FLAGS) -o $@ $< 78 $(POST_PROCESS_O) 79