diff options
Diffstat (limited to 'board/eltec')
| -rw-r--r-- | board/eltec/bab7xx/Makefile | 4 | ||||
| -rw-r--r-- | board/eltec/elppc/Makefile | 4 | ||||
| -rw-r--r-- | board/eltec/mhpc/Makefile | 4 | 
3 files changed, 6 insertions, 6 deletions
| diff --git a/board/eltec/bab7xx/Makefile b/board/eltec/bab7xx/Makefile index 1e76d25f7..b22160fea 100644 --- a/board/eltec/bab7xx/Makefile +++ b/board/eltec/bab7xx/Makefile @@ -23,7 +23,7 @@  include $(TOPDIR)/config.mk -LIB	= $(obj)lib$(BOARD).a +LIB	= $(obj)lib$(BOARD).o  COBJS	= $(BOARD).o flash.o pci.o misc.o el_srom.o dc_srom.o l2cache.o @@ -34,7 +34,7 @@ OBJS	:= $(addprefix $(obj),$(COBJS))  SOBJS	:= $(addprefix $(obj),$(SOBJS))  $(LIB):	$(obj).depend $(OBJS) $(SOBJS) -	$(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) +	$(call cmd_link_o_target, $(OBJS) $(SOBJS))  clean:  	rm -f $(SOBJS) $(OBJS) diff --git a/board/eltec/elppc/Makefile b/board/eltec/elppc/Makefile index 24cbfeee3..367239a0f 100644 --- a/board/eltec/elppc/Makefile +++ b/board/eltec/elppc/Makefile @@ -23,7 +23,7 @@  include $(TOPDIR)/config.mk -LIB	= $(obj)lib$(BOARD).a +LIB	= $(obj)lib$(BOARD).o  COBJS	= $(BOARD).o flash.o pci.o misc.o mpc107_i2c.o eepro100_srom.o @@ -34,7 +34,7 @@ OBJS	:= $(addprefix $(obj),$(COBJS))  SOBJS	:= $(addprefix $(obj),$(SOBJS))  $(LIB):	$(obj).depend $(OBJS) $(SOBJS) -	$(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) +	$(call cmd_link_o_target, $(OBJS) $(SOBJS))  clean:  	rm -f $(SOBJS) $(OBJS) diff --git a/board/eltec/mhpc/Makefile b/board/eltec/mhpc/Makefile index cf07cf40f..6dc495c36 100644 --- a/board/eltec/mhpc/Makefile +++ b/board/eltec/mhpc/Makefile @@ -23,7 +23,7 @@  include $(TOPDIR)/config.mk -LIB	= $(obj)lib$(BOARD).a +LIB	= $(obj)lib$(BOARD).o  COBJS	= $(BOARD).o flash.o @@ -32,7 +32,7 @@ OBJS	:= $(addprefix $(obj),$(COBJS))  SOBJS	:= $(addprefix $(obj),$(SOBJS))  $(LIB):	$(obj).depend $(OBJS) -	$(AR) $(ARFLAGS) $@ $(OBJS) +	$(call cmd_link_o_target, $(OBJS))  ######################################################################### |