head	1.1;
access;
symbols
	netbsd-11-0-RC5:1.1
	netbsd-11-0-RC4:1.1
	netbsd-11-0-RC3:1.1
	netbsd-11-0-RC2:1.1
	netbsd-11-0-RC1:1.1
	perseant-exfatfs-base-20250801:1.1
	netbsd-11:1.1.0.2
	netbsd-11-base:1.1;
locks; strict;
comment	@# @;


1.1
date	2025.07.17.14.26.12;	author christos;	state Exp;
branches;
next	;
commitid	9yTxET2KrcqKI63G;


desc
@@


1.1
log
@Add build glue and generated files.
@
text
@#	$NetBSD: srcs.inc,v 1.1 2023/05/07 16:22:10 christos Exp $


#CRYPTOINCS= \
#md5.inc \
#rc4.inc \

LEGACYINCS= \
crypto_des.inc \
crypto_rc4.inc \
crypto_md5.inc \
providers.inc \
providers_common.inc \
providers_implementations_ciphers.inc \
providers_implementations_digests.inc \
providers_implementations_kdfs.inc \

.if exists(${.CURDIR}/arch/${MACHINE_ARCH})
CRYPTO_MACHINE_CPU?=    ${MACHINE_ARCH}
.else
CRYPTO_MACHINE_CPU?=    ${MACHINE_CPU}
.endif

.for cryptoinc in ${CRYPTOINCS}
.if exists(${.CURDIR}/../libcrypto/arch/${CRYPTO_MACHINE_CPU}/${cryptoinc})
.include "${.CURDIR}/../libcrypto/arch/${CRYPTO_MACHINE_CPU}/${cryptoinc}"
.else
.include "${.CURDIR}/../libcrypto/${cryptoinc}"
.endif
.endfor

.for legacyinc in ${LEGACYINCS}
.if exists(${.CURDIR}/arch/${LEGACY_MACHINE_CPU}/${legacyinc})
.include "${.CURDIR}/arch/${LEGACY_MACHINE_CPU}/${legacyinc}"
.else
.include "${legacyinc}"
.endif
.endfor
@
