From 5b726ddd81fd77947e126b14c84fb843b63544c5 Mon Sep 17 00:00:00 2001 From: Matt Fleming Date: Tue, 12 Apr 2011 14:44:32 +0100 Subject: [PATCH] lua: Delete superfluous $(LIBS) prerequisite com32.mk already includes the necessary library in $(C_LIBS), we don't need to list them again in $(LIBS). Signed-off-by: Matt Fleming --- com32/lua/src/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/com32/lua/src/Makefile b/com32/lua/src/Makefile index 04ea255..14b0e33 100644 --- a/com32/lua/src/Makefile +++ b/com32/lua/src/Makefile @@ -19,7 +19,6 @@ topdir = ../../.. MAKEDIR = $(topdir)/mk include $(MAKEDIR)/com32.mk -LIBS = ../../lib/libcom32.a $(LIBGCC) LNXLIBS = # Temporarily allow warnings not being treated as errors @@ -55,7 +54,7 @@ $(LIBLUA) : $(LIBLUA_OBJS) $(AR) cq $@ $^ $(RANLIB) $@ -lua.elf : $(OBJS) $(LIBLUA) $(LIBS) $(C_LIBS) +lua.elf : $(OBJS) $(LIBLUA) $(C_LIBS) $(LD) $(LDFLAGS) -o $@ $^ tidy dist: -- 2.7.4