blob: 13235d92f5bfe005f91e0e99d83b1c4dc3fb9046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: store.inc,v 1.3 2023/05/06 17:07:23 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/store
STORE_SRCS += \
store_err.c \
store_init.c \
store_lib.c \
store_meth.c \
store_register.c \
store_result.c \
store_strings.c \
SRCS += ${STORE_SRCS}
.for cryptosrc in ${STORE_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/store ${STORECPPFLAGS}
.endfor
|