summaryrefslogtreecommitdiff
path: root/nuttx/arch/z80/src
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 15:42:12 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 15:42:12 +0000
commitfb10e5e13cdebe6fd2f49cf6d593ce3140ef27ff (patch)
treeaa3edd7ae5f0bec0381fd40cca39da61909ea36a /nuttx/arch/z80/src
parentf7a2c6b5546366aa69a5fe9a44e6df2bcfa4a793 (diff)
downloadpx4-nuttx-fb10e5e13cdebe6fd2f49cf6d593ce3140ef27ff.tar.gz
px4-nuttx-fb10e5e13cdebe6fd2f49cf6d593ce3140ef27ff.tar.bz2
px4-nuttx-fb10e5e13cdebe6fd2f49cf6d593ce3140ef27ff.zip
Partial change: Removing bash ARCHIVE loop
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5335 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/z80/src')
-rw-r--r--nuttx/arch/z80/src/Makefile.sdcc4
-rw-r--r--nuttx/arch/z80/src/Makefile.zdsii4
2 files changed, 2 insertions, 6 deletions
diff --git a/nuttx/arch/z80/src/Makefile.sdcc b/nuttx/arch/z80/src/Makefile.sdcc
index 32169d442..815c52a71 100644
--- a/nuttx/arch/z80/src/Makefile.sdcc
+++ b/nuttx/arch/z80/src/Makefile.sdcc
@@ -134,9 +134,7 @@ endif
# Combine all objects in this directory into a library
libarch$(LIBEXT): up_mem.h asm_mem.h $(OBJS)
- @( for obj in $(OBJS) ; do \
- $(call ARCHIVE, $@, $${obj}); \
- done ; )
+ $(call ARCHIVE, $@, "$(OBJS)")
# This builds the libboard library in the board/ subdirectory
diff --git a/nuttx/arch/z80/src/Makefile.zdsii b/nuttx/arch/z80/src/Makefile.zdsii
index e749bddd3..031d4fe3d 100644
--- a/nuttx/arch/z80/src/Makefile.zdsii
+++ b/nuttx/arch/z80/src/Makefile.zdsii
@@ -86,9 +86,7 @@ $(COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
libarch$(LIBEXT): $(OBJS)
- @( for obj in $(OBJS) ; do \
- $(call ARCHIVE, $@, $${obj}); \
- done ; )
+ $(call ARCHIVE, $@, "$(OBJS)")
board/libboard$(LIBEXT):
@$(MAKE) -C board TOPDIR="$(TOPDIR)" libboard$(LIBEXT) EXTRADEFINES=$(EXTRADEFINES)