mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2024-11-26 19:33:27 +08:00
3507c491c3
By hardcoding the use of -Werror, we risk that the build can break on any newer (or older) toolchain which can give warnings for unexpected issues. Fixing such issues is of course desired, but we shouldn't be breaking the build universally, unless the user explicitly has asked for this behaviour. Signed-off-by: Martin Storsjö <martin@martin.st>
12 lines
377 B
Makefile
12 lines
377 B
Makefile
bin_PROGRAMS = gendef
|
|
AM_LDFLAGS = @GENDEF_LDFLAGS@
|
|
AM_CPPFLAGS = @GENDEF_CPPFLAGS@
|
|
|
|
gendef_SOURCES = src/gendef.h src/compat_string.h src/gendef.c src/gendef_def.c src/compat_string.c \
|
|
src/fsredir.c src/fsredir.h
|
|
gendef_CFLAGS = $(AM_CFLAGS) -Wall -W
|
|
|
|
EXTRA_DIST = $(srcdir)/ChangeLog*
|
|
DISTCHECK_CONFIGURE_FLAGS = --host=$(host) --with-mangle=@with_mangle@
|
|
|