aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/whrlpool
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-12-16 13:23:57 +0000
committerAndy Polyakov <appro@openssl.org>2005-12-16 13:23:57 +0000
commit4c5e19b6c671ded9328137391aa0c12414508c63 (patch)
tree9762ccc1ec7ab0af8dbd0c6b51d7e35f9084102e /crypto/whrlpool
parented26604a717ca6e028ec12ae896603a96c66e2b2 (diff)
downloadopenssl-4c5e19b6c671ded9328137391aa0c12414508c63.tar.gz
Make framework for Whirlpool assembler flexible.
Diffstat (limited to 'crypto/whrlpool')
-rw-r--r--crypto/whrlpool/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/whrlpool/Makefile b/crypto/whrlpool/Makefile
index a0b07df53a..c0120a845a 100644
--- a/crypto/whrlpool/Makefile
+++ b/crypto/whrlpool/Makefile
@@ -11,6 +11,8 @@ CFLAG=-g
MAKEFILE= Makefile
AR= ar r
+WP_ASM_OBJ=wp_block.o
+
CFLAGS= $(INCLUDES) $(CFLAG)
ASFLAGS= $(INCLUDES) $(ASFLAG)
AFLAGS= $(ASFLAGS)
@@ -21,7 +23,7 @@ APPS=
LIB=$(TOP)/libcrypto.a
LIBSRC=wp_dgst.c wp_block.c
-LIBOBJ=wp_dgst.o wp_block.o $(WP_ASM_OBJ)
+LIBOBJ=wp_dgst.o $(WP_ASM_OBJ)
SRC= $(LIBSRC)