blob: 66ffa20ad6ae03c414824018df22ae304fdf518c (
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
|
# $NetBSD: crypto.inc,v 1.4 2014/04/15 10:02:21 joerg Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/Makefile
#
.PATH: ${OPENSSLSRC}/crypto
CRYPTO_SRCS = cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c \
cpt_err.c ebcdic.c uid.c o_time.c o_str.c o_dir.c o_fips.c o_init.c
SRCS += ${CRYPTO_SRCS}
.if !defined(CPUID)
CRYPTO_SRCS+= mem_clr.c
.else
CRYPTO_SRCS+= ${CPUID_SRCS}
CRYPTOCPPFLAGS=-DOPENSSL_CPUID_OBJ
.endif
.for cryptosrc in ${CRYPTO_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/crypto ${CRYPTOCPPFLAGS}
.endfor
|