Don't build a big-endian image on platforms which don't run big-endian.

This commit is contained in:
thorpej 2003-05-26 15:17:38 +00:00
parent 63cb165a80
commit eaf50189f3
1 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,13 @@
# $NetBSD: Makefile,v 1.1 2003/04/29 05:35:08 thorpej Exp $
# $NetBSD: Makefile,v 1.2 2003/05/26 15:17:38 thorpej Exp $
.if ${MACHINE_ARCH} == "arm"
# Little endian platforms
SUBDIR= ADI_BRH_flash_0x00140000
SUBDIR+= IQ80310_flash_0x00080000
SUBDIR+= IQ80321_flash_0xf0080000
.else
# Big endian platforms
SUBDIR= ADI_BRH_flash_0x00140000
.endif
.include <bsd.subdir.mk>