1#	$NetBSD: srcs.inc,v 1.1 2023/05/06 17:07:23 christos Exp $
2
3DEFAULTINCS= \
4providers_common.inc \
5providers_common_der.inc \
6providers_implementations_asymciphers.inc \
7providers_implementations_ciphers.inc \
8providers_implementations_digests.inc \
9providers_implementations_encode_decode.inc \
10providers_implementations_exchange.inc \
11providers_implementations_kdfs.inc \
12providers_implementations_kem.inc \
13providers_implementations_keymgmt.inc \
14providers_implementations_macs.inc \
15providers_implementations_rands.inc \
16providers_implementations_rands_seeding.inc \
17providers_implementations_signature.inc \
18providers_implementations_storemgmt.inc \
19ssl.inc \
20
21.for defaultinc in ${DEFAULTINCS}
22.if exists(${.CURDIR}/arch/${DEFAULT_MACHINE_CPU}/${defaultinc})
23.include "${.CURDIR}/arch/${DEFAULT_MACHINE_CPU}/${defaultinc}"
24.else
25.include "${defaultinc}"
26.endif
27.endfor
28