1 # $NetBSD: ecdsa.inc,v 1.1.1.1 2018/02/03 22:43:37 christos Exp $ 2 # 3 # @(#) Copyright (c) 1995 Simon J. Gerraty 4 # 5 # SRCS extracted from src/crypto/dist/openssl/crypto/ec/Makefile 6 # 7 8 .PATH: ${OPENSSLSRC}/crypto/ecdsa 9 10 11 ECDSA_SRCS = ecs_asn1.c ecs_err.c ecs_lib.c ecs_locl.h ecs_ossl.c ecs_sign.c \ 12 ecs_vrf.c 13 SRCS += ${ECDSA_SRCS} 14 15 .for cryptosrc in ${ECDSA_SRCS} 16 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/ecdsa 17 .endfor 18