bsd.arch.inc.mk revision 222813
1272343Sngie#
2272343Sngie# Include the arch-specific Makefile.inc.$ARCH.  We go from most specific
3272343Sngie# to least specific, stopping after we get a hit.
4272343Sngie#
5272343Sngie.if exists(${.CURDIR}/Makefile.${MACHINE})
6272343Sngie.include "Makefile.${MACHINE}"
7272343Sngie.elif exists(${.CURDIR}/Makefile.${MACHINE_ARCH})
8272343Sngie.include "Makefile.${MACHINE_ARCH}"
9.elif exists(${.CURDIR}/Makefile.${MACHINE_CPUARCH})
10.include "Makefile.${MACHINE_CPUARCH}"
11.endif
12