blob: 025e30a31e207426dce3d0fd1a3789989ae701a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: srcs.inc,v 1.1 2023/05/07 16:22:10 christos Exp $
APPSINCS= \
apps_lib.inc \
.for appsinc in ${APPSINCS}
.if exists(${.CURDIR}/arch/${APPS_MACHINE_CPU}/${appsinc})
.include "${.CURDIR}/arch/${APPS_MACHINE_CPU}/${appsinc}"
.else
.include "${appsinc}"
.endif
.endfor
|