diff options
Diffstat (limited to 'board/esd/dp405')
| -rw-r--r-- | board/esd/dp405/Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/esd/dp405/Makefile b/board/esd/dp405/Makefile index 86bd4461d..d4012b022 100644 --- a/board/esd/dp405/Makefile +++ b/board/esd/dp405/Makefile @@ -26,7 +26,7 @@ ifneq ($(OBJTREE),$(SRCTREE))  $(shell mkdir -p $(obj)../common/xilinx_jtag)  endif -LIB	= $(obj)lib$(BOARD).a +LIB	= $(obj)lib$(BOARD).o  # Objects for Xilinx JTAG programming (CPLD)  CPLD    = ../common/xilinx_jtag/lenval.o \ @@ -40,7 +40,7 @@ OBJS	:= $(addprefix $(obj),$(COBJS))  SOBJS	:= $(addprefix $(obj),$(SOBJS))  $(LIB):	$(OBJS) $(SOBJS) -	$(AR) $(ARFLAGS) $@ $(OBJS) +	$(call cmd_link_o_target, $(OBJS))  clean:  	rm -f $(SOBJS) $(OBJS) |