blob: 5051a8aa254e1702f61ed6bc64ef0f39aa76adc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: pqueue.inc,v 1.1.1.1 2018/02/03 22:43:37 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
|