summaryrefslogtreecommitdiff
path: root/mtools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'mtools/Makefile')
-rwxr-xr-xmtools/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/mtools/Makefile b/mtools/Makefile
index 6164d24c..78cea1e2 100755
--- a/mtools/Makefile
+++ b/mtools/Makefile
@@ -1,13 +1,14 @@
topdir = ..
-include $(topdir)/MCONFIG
+MAKEDIR = $(topdir)/mk
+include $(MAKEDIR)/syslinux.mk
OPTFLAGS = -g -Os
INCLUDES = -I. -I.. -I../libfat -I../libinstaller
CFLAGS = $(GCCWARN) -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES)
-LDFLAGS = -s
+LDFLAGS =
SRCS = syslinux.c \
- ../libinstaller/fat.c \
+ ../libinstaller/fs.c \
../libinstaller/syslxmod.c \
../libinstaller/syslxopt.c \
../libinstaller/setadv.c \
@@ -36,6 +37,9 @@ installer: syslinux
syslinux: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $^
+strip:
+ $(STRIP) syslinux
+
%.o: %.c
$(CC) $(UMAKEDEPS) $(CFLAGS) -c -o $@ $<
%.i: %.c