blob: c4e7f14906f3e843403e5bb44f4e3f92fe11e094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: conf.inc,v 1.3 2023/05/06 17:07:22 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/conf
CONF_SRCS += \
conf_api.c \
conf_def.c \
conf_err.c \
conf_lib.c \
conf_mall.c \
conf_mod.c \
conf_sap.c \
conf_ssl.c \
SRCS += ${CONF_SRCS}
.for cryptosrc in ${CONF_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/conf ${CONFCPPFLAGS}
.endfor
|