]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/mk/bsd.arch.inc.mk
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / share / mk / bsd.arch.inc.mk
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