Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions boards/z16/z16f/z16f2800100zcog/scripts/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,7 @@ define MOVEOBJ
endef

define ARCHIVE
@echo AR: $2
$(Q) for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
endef

define CLEAN
Expand Down Expand Up @@ -228,8 +227,7 @@ define MOVEOBJ
endef

define ARCHIVE
$(Q) for __obj in $(2) ; do \
echo "AR: $$__obj"; \
for __obj in $(2) ; do \
"$(AR)" $(ARFLAGS) $1=-+$$__obj || { echo "$(AR) $1=-+$$__obj FAILED!" ; exit 1 ; } \
done
endef
Expand Down
6 changes: 2 additions & 4 deletions boards/z80/ez80/ez80f910200kitg/scripts/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@ define MOVEOBJ
endef

define ARCHIVE
@echo AR: $2
$(Q) for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
endef

define CLEAN
Expand Down Expand Up @@ -240,8 +239,7 @@ define MOVEOBJ
endef

define ARCHIVE
$(Q) for __obj in $(2) ; do \
echo "AR: $$__obj"; \
for __obj in $(2) ; do \
$(AR) $(ARFLAGS) $1=-+$$__obj || { echo "$(AR) $1=-+$$__obj FAILED!" ; exit 1 ; } \
done
endef
Expand Down
6 changes: 2 additions & 4 deletions boards/z80/ez80/ez80f910200zco/scripts/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@ define MOVEOBJ
endef

define ARCHIVE
@echo AR: $2
$(Q) for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
endef

define CLEAN
Expand Down Expand Up @@ -240,8 +239,7 @@ define MOVEOBJ
endef

define ARCHIVE
$(Q) for __obj in $(2) ; do \
echo "AR: $$__obj"; \
for __obj in $(2) ; do \
$(AR) $(ARFLAGS) $1=-+$$__obj || { echo "$(AR) $1=-+$$__obj FAILED!" ; exit 1 ; } \
done
endef
Expand Down
6 changes: 2 additions & 4 deletions boards/z80/ez80/makerlisp/scripts/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,7 @@ define MOVEOBJ
endef

define ARCHIVE
@echo AR: $2
$(Q) for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $1=-+%%G )
endef

define CLEAN
Expand Down Expand Up @@ -248,8 +247,7 @@ define MOVEOBJ
endef

define ARCHIVE
$(Q) for __obj in $(2) ; do \
echo "AR: $$__obj"; \
for __obj in $(2) ; do \
$(AR) $(ARFLAGS) $1=-+$$__obj || { echo "$(AR) $1=-+$$__obj FAILED!" ; exit 1 ; } \
done
endef
Expand Down
6 changes: 2 additions & 4 deletions boards/z80/z8/z8encore000zco/configs/ostest/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,7 @@ define MOVEOBJ
endef

define ARCHIVE
@echo AR: $2
$(Q) for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
endef

define CLEAN
Expand Down Expand Up @@ -258,8 +257,7 @@ define MOVEOBJ
endef

define ARCHIVE
$(Q) for __obj in $(2) ; do \
echo "AR: $$__obj"; \
for __obj in $(2) ; do \
"$(AR)" $(ARFLAGS) $1=-+$$__obj || { echo "$(AR) $1=-+$$__obj FAILED!" ; exit 1 ; } \
done
endef
Expand Down
6 changes: 2 additions & 4 deletions boards/z80/z8/z8f64200100kit/configs/ostest/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,7 @@ define MOVEOBJ
endef

define ARCHIVE
@echo AR: $2
$(Q) for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
for %%G in ($(2)) do ( "$(AR)" $(ARFLAGS) $1=-+%%G )
endef

define CLEAN
Expand Down Expand Up @@ -258,8 +257,7 @@ define ASSEMBLE
endef

define ARCHIVE
$(Q) for __obj in $(2) ; do \
echo "AR: $$__obj"; \
for __obj in $(2) ; do \
"$(AR)" $(ARFLAGS) $1=-+$$__obj || { echo "$(AR) $1=-+$$__obj FAILED!" ; exit 1 ; } \
done
endef
Expand Down
6 changes: 2 additions & 4 deletions tools/Config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -215,13 +215,11 @@ endef

ifeq ($(CONFIG_WINDOWS_NATIVE),y)
define ARCHIVE
@echo AR: $2
$(Q) $(AR) $1 $(2)
$(AR) $1 $(2)
endef
else
define ARCHIVE
@echo "AR: $2"
$(Q) $(AR) $1 $(2) || { echo "$(AR) $1 FAILED!" ; exit 1 ; }
$(AR) $1 $(2) || { echo "$(AR) $1 FAILED!" ; exit 1 ; }
endef
endif

Expand Down