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