blob: 847b3a053de68061d057c5fd5e3a9ec8e9911232 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: async.inc,v 1.1.1.1 2023/04/18 14:19:03 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/asn1/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/async ${OPENSSLSRC}/crypto/async/arch
ASYNC_SRCS = \
async.c \
async_err.c \
async_posix.c \
async_wait.c
SRCS += ${ASYNC_SRCS}
.for cryptosrc in ${ASYNC_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/async
.endfor
|