aboutsummaryrefslogtreecommitdiff
path: root/share/mk/bsd.arch.inc.mk
blob: 98e429e83602c0c0e3ee47b9fb0586426b0c8c85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#
# Include the arch-specific Makefile.inc.$ARCH.  We go from most specific
# to least specific, stopping after we get a hit.
#
.if exists(${.CURDIR}/Makefile.${MACHINE})
.include "Makefile.${MACHINE}"
.elif exists(${.CURDIR}/Makefile.${MACHINE_ARCH})
.include "Makefile.${MACHINE_ARCH}"
.elif exists(${.CURDIR}/Makefile.${MACHINE_CPUARCH})
.include "Makefile.${MACHINE_CPUARCH}"
.endif