14 lines
351 B
Makefile
14 lines
351 B
Makefile
# $NetBSD: Makefile,v 1.5 2013/02/05 07:28:19 matt Exp $
|
|
|
|
.include <bsd.endian.mk>
|
|
|
|
SUBDIR+= gzboot
|
|
SUBDIR+= boot2440
|
|
.if ${MACHINE_CPU} == "arm" && ${TARGET_ENDIANNESS} == "1234"
|
|
# According to the i.MX23 Reference Manual section 3.1, Page 3-3:
|
|
# "The i.MX23 always operates in litle-endian mode."
|
|
SUBDIR+= bootimx23
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|