blob: 1d0d784c7f885a738a0ad6b1147fd28549145437 (
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
38
39
40
41
42
43
44
45
46
|
# $NetBSD: crypto.inc,v 1.1.1.2 2023/04/18 14:19:03 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/Makefile
#
.PATH: ${OPENSSLSRC}/crypto
CRYPTO_SRCS += \
cpt_err.c \
cryptlib.c \
ctype.c \
cversion.c \
ebcdic.c \
ex_data.c \
getenv.c \
init.c \
mem.c \
mem_dbg.c \
mem_sec.c \
o_dir.c \
o_fips.c \
o_fopen.c \
o_init.c \
o_str.c \
o_time.c \
threads_none.c \
threads_pthread.c \
threads_win.c \
uid.c
SRCS += ${CRYPTO_SRCS}
.if !defined(CPUID)
CRYPTO_SRCS+= mem_clr.c
.else
CRYPTO_SRCS+= ${CPUID_SRCS}
.endif
CRYPTOCPPFLAGS+=-DOPENSSL_NO_STATIC_ENGINE
.for cryptosrc in ${CRYPTO_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/crypto ${CRYPTOCPPFLAGS}
.endfor
|