1204020Simp#
2204020Simp# Include the arch-specific Makefile.inc.$ARCH.  We go from most specific
3204020Simp# to least specific, stopping after we get a hit.
4204020Simp#
5204020Simp.if exists(${.CURDIR}/Makefile.${MACHINE})
6204020Simp.include "Makefile.${MACHINE}"
7204020Simp.elif exists(${.CURDIR}/Makefile.${MACHINE_ARCH})
8204020Simp.include "Makefile.${MACHINE_ARCH}"
9204020Simp.elif exists(${.CURDIR}/Makefile.${MACHINE_CPUARCH})
10204020Simp.include "Makefile.${MACHINE_CPUARCH}"
11204020Simp.endif
12