blob: 79eb6936659f4fa6a0ef65ba9b5ad9eeeadbb21d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: lhash.inc,v 1.1 2009/07/19 23:30:43 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/lhash/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/lhash
LHASH_SRCS = lhash.c lh_stats.c
SRCS += ${LHASH_SRCS}
.for cryptosrc in ${LHASH_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/lhash
.endfor
|