summaryrefslogtreecommitdiff
path: root/com32/mboot
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@linux.intel.com>2011-04-11 13:17:32 +0100
committerMatt Fleming <matt.fleming@linux.intel.com>2011-04-11 13:36:02 +0100
commit56f0045aed582d4943622e7072507bfdbf759c23 (patch)
tree3951f73605a851077f5a90370440d22c6bff4a91 /com32/mboot
parentd7e6cfaa6a990eb8fe2eaabe7fad1d1c8367a7ee (diff)
downloadsyslinux-56f0045aed582d4943622e7072507bfdbf759c23.tar.gz
mboot.c32: Delete superfluous $(LIBS) prerequisite
com32.mk already includes the necessary archive 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/mboot')
-rw-r--r--com32/mboot/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/com32/mboot/Makefile b/com32/mboot/Makefile
index cad320f2..b7ee1154 100644
--- a/com32/mboot/Makefile
+++ b/com32/mboot/Makefile
@@ -19,7 +19,6 @@ topdir = ../..
MAKEDIR = $(topdir)/mk
include $(MAKEDIR)/com32.mk
-LIBS = ../libutil/libutil_com.a ../lib/libcom32.a $(LIBGCC)
LNXLIBS = ../libutil/libutil_lnx.a
MODULES = mboot.c32
@@ -29,7 +28,7 @@ OBJS = mboot.o map.o mem.o initvesa.o apm.o solaris.o syslinux.o
all: $(MODULES) $(TESTFILES)
-mboot.elf : $(OBJS) $(LIBS) $(C_LIBS)
+mboot.elf : $(OBJS) $(C_LIBS)
$(LD) $(LDFLAGS) -o $@ $^
tidy dist: