blob: a988e4e4b7b08a031f0535fb837489674ab851ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: conf.inc,v 1.1.1.2 2023/04/18 14:19:03 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/conf/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/conf
CONF_SRCS = conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \
conf_mall.c conf_sap.c conf_ssl.c
SRCS += ${CONF_SRCS}
.for cryptosrc in ${CONF_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/conf
.endfor
|