diff options
Diffstat (limited to 'board/cray')
| -rw-r--r-- | board/cray/L1/Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/cray/L1/Makefile b/board/cray/L1/Makefile index 21b513c29..d1a7a0b0d 100644 --- a/board/cray/L1/Makefile +++ b/board/cray/L1/Makefile @@ -23,7 +23,7 @@  include $(TOPDIR)/config.mk -LIB	= $(obj)lib$(BOARD).a +LIB	= $(obj)lib$(BOARD).o  COBJS	= $(BOARD).o flash.o  SOBJS	= init.o @@ -36,7 +36,7 @@ SOBJS	:= $(addprefix $(obj),$(SOBJS))  # HACK: depend needs bootscript.c, which needs tools/mkimage, which is not  # built in the depend stage.  So... put bootscript.o here, not in OBJS  $(LIB):	$(OBJS) $(SOBJS) $(obj)bootscript.o -	$(AR) $(ARFLAGS) $@ $^ +	$(call cmd_link_o_target, $^)  clean:  	rm -f $(SOBJS) $(OBJS) $(obj)bootscript.c \ |