menu.c32: Delete superfluous $(LIBS) prerequistite
authorMatt Fleming <matt.fleming@linux.intel.com>
Mon, 11 Apr 2011 12:38:36 +0000 (13:38 +0100)
committerMatt Fleming <matt.fleming@linux.intel.com>
Sat, 16 Apr 2011 10:05:40 +0000 (11:05 +0100)
com32.mk already includes the necessary libraries in $(C_LIBS), we
don't need to list them again in $(LIBS).

Signed-off-by: Matt Fleming <matt.fleming@linux.intel.com>
com32/menu/Makefile

index f97a804..b67b997 100644 (file)
@@ -18,7 +18,6 @@ topdir = ../..
 MAKEDIR = $(topdir)/mk
 include $(MAKEDIR)/com32.mk
 
-LIBS      = ../libutil/libutil_com.a ../lib/libcom32.a $(LIBGCC)
 LNXLIBS           = ../libutil/libutil_lnx.a
 
 MODULES          = menu.c32 vesamenu.c32
@@ -29,10 +28,10 @@ COMMONOBJS = menumain.o readconfig.o passwd.o drain.o printmsg.o colors.o \
 
 all: $(MODULES) $(TESTFILES)
 
-menu.elf : menu.o $(COMMONOBJS) $(LIBS) $(C_LIBS)
+menu.elf : menu.o $(COMMONOBJS) $(C_LIBS)
        $(LD) $(LDFLAGS) -o $@ $^
 
-vesamenu.elf : vesamenu.o $(COMMONOBJS) $(LIBS) $(C_LIBS)
+vesamenu.elf : vesamenu.o $(COMMONOBJS) $(C_LIBS)
        $(LD) $(LDFLAGS) -o $@ $^
 
 tidy dist: