blob: 65d9b32b909dedcf8471fd92d021faedf41bfa04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: pqueue.inc,v 1.2 2006/03/17 20:47:45 dsl Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from /home/current/src/lib/libcrypto/../../crypto/dist/openssl/crypto/evp/Makefile.ssl
#
.PATH: ${OPENSSLSRC}/crypto/pqueue
PQUEUE_SRCS = pqueue.c
SRCS += ${PQUEUE_SRCS}
.for cryptosrc in ${PQUEUE_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/pqueue
.endfor
|