summaryrefslogtreecommitdiff
path: root/com32/menu
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@linux.intel.com>2011-04-11 13:38:36 +0100
committerMatt Fleming <matt.fleming@linux.intel.com>2011-04-16 11:05:40 +0100
commit0a90df2a974786f188315f04ffebdcd549669cf8 (patch)
treedad33ef16625c8dc18635fcb5af535da5556b2fe /com32/menu
parent56f0045aed582d4943622e7072507bfdbf759c23 (diff)
downloadsyslinux-0a90df2a974786f188315f04ffebdcd549669cf8.tar.gz
menu.c32: Delete superfluous $(LIBS) prerequistite
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>
Diffstat (limited to 'com32/menu')
-rw-r--r--com32/menu/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/com32/menu/Makefile b/com32/menu/Makefile
index f97a804b..b67b997d 100644
--- a/com32/menu/Makefile
+++ b/com32/menu/Makefile
@@ -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: