lua: Delete superfluous $(LIBS) prerequisite
authorMatt Fleming <matt.fleming@linux.intel.com>
Tue, 12 Apr 2011 13:44:32 +0000 (14:44 +0100)
committerMatt Fleming <matt.fleming@linux.intel.com>
Sat, 16 Apr 2011 10:06:23 +0000 (11:06 +0100)
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 <matt.fleming@linux.intel.com>
com32/lua/src/Makefile

index 04ea255..14b0e33 100644 (file)
@@ -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: