blob: d4af9336a5d149510307f9400d0b59cf72f729d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: store.inc,v 1.1.1.2 2023/04/18 14:19:04 christos Exp $
#
# SRCS extracted from src/crypto/dist/openssl/crypto/store/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/store
STORE_SRCS += \
loader_file.c \
store_init.c \
store_err.c \
store_lib.c \
store_register.c \
store_strings.c
SRCS += ${STORE_SRCS}
.for cryptosrc in ${STORE_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/store
.endfor
|