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