diff options
author | Andy Polyakov <appro@openssl.org> | 2015-12-12 12:29:37 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2015-12-13 20:56:50 +0100 |
commit | 22c2e80f89327c1287924781a9cfa698dd1b15a6 (patch) | |
tree | da97cc8f12e5d1c7d7e84da2c016e38b16738936 /crypto/poly1305/Makefile | |
parent | Configure: 'reconf' to respect CROSS_COMPILE and CC. (diff) | |
download | openssl-22c2e80f89327c1287924781a9cfa698dd1b15a6.tar.xz openssl-22c2e80f89327c1287924781a9cfa698dd1b15a6.zip |
Configure: add framework for ChaCha and Poly1305 assembly.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to '')
-rw-r--r-- | crypto/poly1305/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/poly1305/Makefile b/crypto/poly1305/Makefile index 366cd110f4..db773b9f3b 100644 --- a/crypto/poly1305/Makefile +++ b/crypto/poly1305/Makefile @@ -10,17 +10,17 @@ INCLUDES= CFLAG=-g AR= ar r +POLY1305_ASM_OBJ= + CFLAGS= $(INCLUDES) $(CFLAG) ASFLAGS= $(INCLUDES) $(ASFLAG) AFLAGS= $(ASFLAGS) GENERAL=Makefile -TEST= -APPS= LIB=$(TOP)/libcrypto.a LIBSRC=poly1305.c -LIBOBJ=poly1305.o +LIBOBJ=poly1305.o $(POLY1305_ASM_OBJ) SRC= $(LIBSRC) |