blob: ed084c626faa24f23f515f4404f6405194e45597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: ct.inc,v 1.1.1.1 2023/04/18 14:19:04 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gcmsaty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/cms/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/ct
CT_SRCS = \
ct_b64.c \
ct_err.c \
ct_log.c \
ct_oct.c \
ct_policy.c \
ct_prn.c \
ct_sct.c \
ct_sct_ctx.c \
ct_vfy.c \
ct_x509v3.c
SRCS += ${CT_SRCS}
.for cryptosrc in ${CT_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/ct
.endfor
|