blob: 8e3ee15e62b4f66b5a99a0a64de3c83347260387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: ts.inc,v 1.2 2023/05/06 17:07:23 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/ts
TS_SRCS += \
ts_asn1.c \
ts_conf.c \
ts_err.c \
ts_lib.c \
ts_req_print.c \
ts_req_utils.c \
ts_rsp_print.c \
ts_rsp_sign.c \
ts_rsp_utils.c \
ts_rsp_verify.c \
ts_verify_ctx.c \
SRCS += ${TS_SRCS}
.for cryptosrc in ${TS_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/ts ${TSCPPFLAGS}
.endfor
|