summaryrefslogtreecommitdiff
path: root/com32/modules/Makefile
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-02-10 22:26:06 -0800
committerH. Peter Anvin <hpa@zytor.com>2008-02-10 22:26:06 -0800
commit9fd7fad275a23cdfad680f56d1199acab675ef2a (patch)
treef1f70293c6f78c8e4a433cdbe95a3b4f942a4bb6 /com32/modules/Makefile
parent55bf6f17d1e646580342bda77d15878e293faad7 (diff)
downloadsyslinux-9fd7fad275a23cdfad680f56d1199acab675ef2a.tar.gz
Simple menu system: move to dedicated subdirectory
Move the simple menu system into its own subdirectory, to make it more obvious which source files are part of it.
Diffstat (limited to 'com32/modules/Makefile')
-rw-r--r--com32/modules/Makefile16
1 files changed, 3 insertions, 13 deletions
diff --git a/com32/modules/Makefile b/com32/modules/Makefile
index 0347c17c..6291a6a4 100644
--- a/com32/modules/Makefile
+++ b/com32/modules/Makefile
@@ -11,7 +11,7 @@
## -----------------------------------------------------------------------
##
-## samples for syslinux users
+## COM32 standard modules
##
TMPFILE = $(shell mktemp /tmp/gcc_ok.XXXXXX)
@@ -47,9 +47,8 @@ AUXDIR = $(LIBDIR)/syslinux
INCDIR = /usr/include
COM32DIR = $(AUXDIR)/com32
-MODULES = chain.c32 menu.c32 vesamenu.c32 ethersel.c32 mboot.c32 \
- dmitest.c32 cpuidtest.c32 pcitest.c32 elf.c32 linux.c32 \
- reboot.c32 pmload.c32 meminfo.c32
+MODULES = chain.c32 ethersel.c32 mboot.c32 dmitest.c32 cpuidtest.c32 \
+ pcitest.c32 elf.c32 linux.c32 reboot.c32 pmload.c32 meminfo.c32
TESTFILES =
all: $(MODULES) $(TESTFILES)
@@ -90,18 +89,9 @@ cpuidtest.elf : cpuidtest.o cpuid.o $(LIBS)
dmitest.elf : dmitest.o dmi_utils.o dmi.o $(LIBS)
$(LD) $(LDFLAGS) -o $@ $^
-menu.elf : menu.o menumain.o readconfig.o printmsg.o $(LIBS)
- $(LD) $(LDFLAGS) -o $@ $^
-
-vesamenu.elf : vesamenu.o menumain.o readconfig.o printmsg.o $(LIBS)
- $(LD) $(LDFLAGS) -o $@ $^
-
ethersel.elf : ethersel.o $(LIBS)
$(LD) $(LDFLAGS) -o $@ $^
-menu.lnx : menu.lo readconfig.lo $(LNXLIBS)
- $(CC) $(LNXLDFLAGS) -o $@ $^
-
tidy:
rm -f *.o *.lo *.a *.lst *.elf