summaryrefslogtreecommitdiff
path: root/mtools
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-01-10 12:48:06 -0800
committerH. Peter Anvin <hpa@zytor.com>2010-01-10 12:49:30 -0800
commit71d20885019564586d5f4d316af220cdae2900f5 (patch)
tree0fb3024519040f20f4e46d87315a14ef571ee6c2 /mtools
parenta7fb4143d599529def315c444c83a8e1aac734d2 (diff)
downloadsyslinux-71d20885019564586d5f4d316af220cdae2900f5.tar.gz
Makefile: replace -W -Wall with centralized $(GCCWARN)
Replace -W -Wall hardcoded into a bunch of Makefiles with $(GCCWARN), a centralized variable defined in the root MCONFIG. Add -Wstrict-prototypes to the list of global warnings: we should never have non-prototyped declarations. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'mtools')
-rw-r--r--mtools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mtools/Makefile b/mtools/Makefile
index b5517805..91b68527 100644
--- a/mtools/Makefile
+++ b/mtools/Makefile
@@ -3,7 +3,7 @@ include $(topdir)/MCONFIG
OPTFLAGS = -g -Os
INCLUDES = -I. -I.. -I../libfat -I../libinstaller
-CFLAGS = -W -Wall -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES)
+CFLAGS = $(GCCWARN) -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES)
LDFLAGS = -s
SRCS = syslinux.c \