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