Makefile revision 1.8
1#	$NetBSD: Makefile,v 1.8 2019/03/30 12:52:29 jmcneill Exp $
2
3.include <bsd.endian.mk>
4
5.if ${MACHINE_CPU} == "arm"
6SUBDIR+= gzboot
7SUBDIR+= boot2440
8.if ${TARGET_ENDIANNESS} == "1234"
9# According to the i.MX23 Reference Manual section 3.1, Page 3-3:
10# "The i.MX23 always operates in litle-endian mode."
11SUBDIR+= bootimx23
12.endif
13.endif
14
15.if ${MACHINE_CPU} == "aarch64"
16SUBDIR+= ../../../stand/efiboot/bootaa64
17.endif
18
19.if ${MACHINE_ARCH:M*armv7*}
20SUBDIR+= ../../../stand/efiboot/bootarm
21.endif
22
23.include <bsd.subdir.mk>
24