summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/mtools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/mtools/Makefile')
-rwxr-xr-xcontrib/syslinux-4.02/mtools/Makefile46
1 files changed, 46 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/mtools/Makefile b/contrib/syslinux-4.02/mtools/Makefile
new file mode 100755
index 0000000..6164d24
--- /dev/null
+++ b/contrib/syslinux-4.02/mtools/Makefile
@@ -0,0 +1,46 @@
+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