summaryrefslogtreecommitdiffstats
path: root/crypto/poly1305
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-12-12 12:29:37 +0100
committerAndy Polyakov <appro@openssl.org>2015-12-13 20:56:50 +0100
commit22c2e80f89327c1287924781a9cfa698dd1b15a6 (patch)
treeda97cc8f12e5d1c7d7e84da2c016e38b16738936 /crypto/poly1305
parent0c14d442545aaea01067308c39d7c644239adc23 (diff)
Configure: add framework for ChaCha and Poly1305 assembly.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/poly1305')
-rw-r--r--crypto/poly1305/Makefile6
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)