diff options
Diffstat (limited to 'board/pleb2/Makefile')
-rw-r--r-- | board/pleb2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/pleb2/Makefile b/board/pleb2/Makefile index cb0c3d7..9b076f5 100644 --- a/board/pleb2/Makefile +++ b/board/pleb2/Makefile @@ -24,7 +24,7 @@ include $(TOPDIR)/config.mk -LIB = $(obj)lib$(BOARD).a +LIB = $(obj)lib$(BOARD).o COBJS := pleb2.o flash.o @@ -32,7 +32,7 @@ SRCS := $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) $(LIB): $(obj).depend $(OBJS) - $(AR) $(ARFLAGS) $@ $(OBJS) + $(call cmd_link_o_target, $(OBJS)) clean: rm -f $(OBJS) |