diff options
Diffstat (limited to 'board/imx31_phycore/Makefile')
| -rw-r--r-- | board/imx31_phycore/Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/imx31_phycore/Makefile b/board/imx31_phycore/Makefile index 5ed2b4bd9..4fd4864bf 100644 --- a/board/imx31_phycore/Makefile +++ b/board/imx31_phycore/Makefile @@ -23,7 +23,7 @@  include $(TOPDIR)/config.mk -LIB	= $(obj)lib$(BOARD).a +LIB	= $(obj)lib$(BOARD).o  COBJS	:= imx31_phycore.o  SOBJS	:= lowlevel_init.o @@ -33,7 +33,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) |