blob: d7b924a6bc91852b7da3f248f1c983ee381784e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: pqueue.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/evp/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/pqueue
PQUEUE_SRCS = pqueue.c
SRCS += ${PQUEUE_SRCS}
.for cryptosrc in ${PQUEUE_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/pqueue
.endfor
|