mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 06:29:51 -04:00
21 lines
483 B
PHP
21 lines
483 B
PHP
# $NetBSD: sha.inc,v 1.3 2014/04/15 10:02:21 joerg Exp $
|
|
#
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
#
|
|
# SRCS extracted from src/crypto/dist/openssl/crypto/sha/Makefile
|
|
#
|
|
|
|
.PATH: ${OPENSSLSRC}/crypto/sha
|
|
|
|
|
|
SHA_SRCS += sha_dgst.c sha1dgst.c sha_one.c sha1_one.c
|
|
|
|
# Replaced OpenSSL version to avoid overlap with libc
|
|
SHA_SRCS+= libc-sha512.c libc-sha256.c
|
|
|
|
SRCS += ${SHA_SRCS}
|
|
|
|
.for cryptosrc in ${SHA_SRCS}
|
|
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/sha ${SHACPPFLAGS}
|
|
.endfor
|