1 # $NetBSD: Makefile,v 1.26 2010/07/05 21:27:55 mrg Exp $ 2 3 .include <bsd.own.mk> 4 5 .if exists(${CSU_MACHINE_ARCH}_elf) 6 SUBDIR= ${CSU_MACHINE_ARCH}_elf 7 .elif exists(${MACHINE_ARCH}_elf) 8 SUBDIR= ${MACHINE_ARCH}_elf 9 .elif exists(${MACHINE_CPU}_elf) 10 SUBDIR= ${MACHINE_CPU}_elf 11 .elif exists(${MACHINE_ARCH}) 12 SUBDIR= ${MACHINE_ARCH} 13 .elif exists(${MACHINE_CPU}) 14 SUBDIR= ${MACHINE_CPU} 15 .else 16 .BEGIN: 17 @echo no SUBDIR for ${MACHINE_ARCH}_elf, ${MACHINE_ARCH} nor \ 18 ${MACHINE_CPU} 19 @false 20 .endif 21 22 .include <bsd.subdir.mk> 23