Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/evbarm/gzboot/gzimg TARGETS -> ARCH_TARGETS



details:   https://anonhg.NetBSD.org/src/rev/0903cee6bd92
branches:  trunk
changeset: 327170:0903cee6bd92
user:      matt <matt%NetBSD.org@localhost>
date:      Sat Mar 01 01:52:13 2014 +0000

description:
TARGETS -> ARCH_TARGETS

diffstat:

 distrib/evbarm/gzboot/gzimg/Makefile |  16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diffs (56 lines):

diff -r 99fdfdefe7da -r 0903cee6bd92 distrib/evbarm/gzboot/gzimg/Makefile
--- a/distrib/evbarm/gzboot/gzimg/Makefile      Sat Mar 01 01:51:01 2014 +0000
+++ b/distrib/evbarm/gzboot/gzimg/Makefile      Sat Mar 01 01:52:13 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.25 2014/01/27 08:18:07 apb Exp $
+#      $NetBSD: Makefile,v 1.26 2014/03/01 01:52:13 matt Exp $
 
 .include <bsd.own.mk>
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -6,19 +6,19 @@
 .include <bsd.kernobj.mk>
 
 #
-# `make' or `make all' builds all gzimg files defined in ${TARGETS}.
+# `make' or `make all' builds all gzimg files defined in ${ARCH_TARGETS}.
 # `make _KERNELNAME_' builds all gzimg files for specified kernels.
 #
 
 
 
-#      TARGETS is a list of:
+#      ARCH_TARGETS is a list of:
 #              KERNEL_name     GZBOOT_name     GZIMG_name
 #              RELOC_ADDR      WHICH_kernel
 #      
 .if ${MACHINE_ARCH} == "arm"
 # Little endian platforms.
-TARGETS=       ADI_BRH         ADI_BRH         ADI_BRH_sd0     \
+ARCH_TARGETS=  ADI_BRH         ADI_BRH         ADI_BRH_sd0     \
                0x00140000      netbsd-sd0                      \
                                                                \
                ADI_BRH         ADI_BRH         ADI_BRH_wd0     \
@@ -53,19 +53,19 @@
                                                                \
                SMDK2800        SMDK2800        SMDK2800        \
                0x00000000      netbsd
-.else
+.elif ${MACHINE_ARCH} == "armeb"
 # Big endian platforms.
-TARGETS=       ADI_BRH         ADI_BRH         ADI_BRH_sd0     \
+ARCH_TARGETS=  ADI_BRH         ADI_BRH         ADI_BRH_sd0     \
                0x00140000      netbsd-sd0                      \
                                                                \
                ADI_BRH         ADI_BRH         ADI_BRH_wd0     \
                0x00140000      netbsd-wd0
 .endif
 
-# Default is to build for all TARGETS
+# Default is to build for all ARCH_TARGETS
 ALL_KERNELS?= +
 
-.for K G I R W in ${TARGETS}                           # {
+.for K G I R W in ${ARCH_TARGETS}                      # {
 .for configsel in ${ALL_KERNELS}                       # {
 .if ${configsel} == "+" || ${configsel} == ${K}
 



Home | Main Index | Thread Index | Old Index