summaryrefslogtreecommitdiffstats
path: root/crypto/ecdsa/Makefile
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-10-27 16:48:36 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-12-09 22:09:18 +0000
commit0a6f1d97330f777f9bcf5fa4f91390b59b737975 (patch)
treeab476be1769a2a242735cc1b4058f0468e0dad17 /crypto/ecdsa/Makefile
parent2d3d00dcd85fcf6dfacebe03e1bf59388849159e (diff)
Move ECDSA implementation to crypto/ec
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/ecdsa/Makefile')
-rw-r--r--crypto/ecdsa/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ecdsa/Makefile b/crypto/ecdsa/Makefile
index 62d3c9f777..d72cd29155 100644
--- a/crypto/ecdsa/Makefile
+++ b/crypto/ecdsa/Makefile
@@ -15,9 +15,9 @@ CFLAGS= $(INCLUDES) $(CFLAG)
GENERAL=Makefile
LIB=$(TOP)/libcrypto.a
-LIBSRC= ecs_lib.c ecs_ossl.c ecs_sign.c ecs_vrf.c ecs_err.c
+LIBSRC= ecs_lib.c ecs_sign.c ecs_vrf.c ecs_err.c
-LIBOBJ= ecs_lib.o ecs_ossl.o ecs_sign.o ecs_vrf.o ecs_err.o
+LIBOBJ= ecs_lib.o ecs_sign.o ecs_vrf.o ecs_err.o
SRC= $(LIBSRC)