diff options
author | Sebastian Schmelzer | 2010-10-25 16:53:54 +0200 |
---|---|---|
committer | Sebastian Schmelzer | 2010-10-25 16:53:54 +0200 |
commit | 3050a9253437f4a4b5ad4bf3b3efdc3c660a5137 (patch) | |
tree | 91ac22153e416aac7ca20916b314b5e2ffa871b1 /contrib/syslinux-4.02/mtools/Makefile | |
download | preboot-master.tar.gz preboot-master.tar.xz preboot-master.zip |
Diffstat (limited to 'contrib/syslinux-4.02/mtools/Makefile')
-rwxr-xr-x | contrib/syslinux-4.02/mtools/Makefile | 46 |
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 |