blob: 73c8e517f652395a1bcca6469923cc44400d966d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: srp.inc,v 1.1.1.1 2018/02/03 22:43:37 christos Exp $
#
# SRCS extracted from src/crypto/dist/openssl/crypto/srp/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/srp
SRP_SRCS = srp_lib.c srp_vfy.c
SRCS += ${SRP_SRCS}
.for cryptosrc in ${SRP_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/srp
.endfor
|