blob: b79a90cd617c2e2ca0ac0afc0660774fd3d3a867 (
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
28
29
30
31
32
33
34
35
36
37
|
# $NetBSD: engine.inc,v 1.14 2023/05/06 17:07:23 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/engine
ENGINE_SRCS += \
eng_all.c \
eng_cnf.c \
eng_ctrl.c \
eng_dyn.c \
eng_err.c \
eng_fat.c \
eng_init.c \
eng_lib.c \
eng_list.c \
eng_openssl.c \
eng_pkey.c \
eng_rdrand.c \
eng_table.c \
tb_asnmth.c \
tb_cipher.c \
tb_dh.c \
tb_digest.c \
tb_dsa.c \
tb_eckey.c \
tb_pkmeth.c \
tb_rand.c \
tb_rsa.c \
SRCS += ${ENGINE_SRCS}
.if !defined(CPUID)
CRYPTOCPPFLAGS+=-DNEED_CPUID_SETUP
.endif
.for cryptosrc in ${ENGINE_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/engine ${ENGINECPPFLAGS}
.endfor
|