mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 06:29:51 -04:00
25 lines
596 B
PHP
25 lines
596 B
PHP
# $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
|