blob: feccded36c487070063ebba8501cbbc859161f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: err.inc,v 1.3 2023/05/06 17:07:23 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/err
ERR_SRCS += \
err.c \
err_all.c \
err_all_legacy.c \
err_blocks.c \
err_prn.c \
SRCS += ${ERR_SRCS}
.for cryptosrc in ${ERR_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/err ${ERRCPPFLAGS}
.endfor
|