diff options
Diffstat (limited to 'lib/lzo')
-rw-r--r-- | lib/lzo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lzo/Makefile b/lib/lzo/Makefile index 5dd1bf5..69bc839 100644 --- a/lib/lzo/Makefile +++ b/lib/lzo/Makefile @@ -23,7 +23,7 @@ include $(TOPDIR)/config.mk -LIB = $(obj)liblzo.a +LIB = $(obj)liblzo.o SOBJS = @@ -34,7 +34,7 @@ SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) $(LIB): $(obj).depend $(OBJS) - $(AR) $(ARFLAGS) $@ $(OBJS) + $(call cmd_link_o_target, $(OBJS)) ######################################################################### |