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