summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/latest/mtools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/latest/mtools/Makefile')
-rwxr-xr-xcontrib/syslinux/latest/mtools/Makefile46
1 files changed, 0 insertions, 46 deletions
diff --git a/contrib/syslinux/latest/mtools/Makefile b/contrib/syslinux/latest/mtools/Makefile
deleted file mode 100755
index 6164d24..0000000
--- a/contrib/syslinux/latest/mtools/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-topdir = ..
-include $(topdir)/MCONFIG
-
-OPTFLAGS = -g -Os
-INCLUDES = -I. -I.. -I../libfat -I../libinstaller
-CFLAGS = $(GCCWARN) -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES)
-LDFLAGS = -s
-
-SRCS = syslinux.c \
- ../libinstaller/fat.c \
- ../libinstaller/syslxmod.c \
- ../libinstaller/syslxopt.c \
- ../libinstaller/setadv.c \
- ../libinstaller/bootsect_bin.c \
- ../libinstaller/ldlinux_bin.c \
- $(wildcard ../libfat/*.c)
-OBJS = $(patsubst %.c,%.o,$(notdir $(SRCS)))
-
-.SUFFIXES: .c .o .i .s .S
-
-VPATH = .:../libfat:../libinstaller
-
-all: installer
-
-tidy dist:
- -rm -f *.o *.i *.s *.a .*.d *.tmp
-
-clean: tidy
- -rm -f syslinux
-
-spotless: clean
- -rm -f *~
-
-installer: syslinux
-
-syslinux: $(OBJS)
- $(CC) $(LDFLAGS) -o $@ $^
-
-%.o: %.c
- $(CC) $(UMAKEDEPS) $(CFLAGS) -c -o $@ $<
-%.i: %.c
- $(CC) $(UMAKEDEPS) $(CFLAGS) -E -o $@ $<
-%.s: %.c
- $(CC) $(UMAKEDEPS) $(CFLAGS) -S -o $@ $<
-
--include .*.d *.tmp