blob: 60dd14f59c14618c01a7462f24e18f46a8e583c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: err.inc,v 1.1.1.2 2023/04/18 14:19:04 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/err/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/err
ERR_SRCS = \
err.c \
err_all.c \
err_prn.c
SRCS += ${ERR_SRCS}
.for cryptosrc in ${ERR_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/err
.endfor
|