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