This commit enables additional compiler warnings. Also, we did not need -Wno-unused-parameter, so let's enable it again.
Signed-off-by: Michael Adler <[email protected]> --- Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index ba24400..ef18ffd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,7 +23,11 @@ efibootguarddir = $(libdir)/efibootguard AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir) -include config.h AM_CFLAGS = \ - -Wno-unused-parameter \ + -Wall \ + -Wextra \ + -pedantic \ + -Wstrict-prototypes \ + -Wold-style-definition \ -Wmissing-prototypes \ -fshort-wchar \ -DHAVE_ENDIAN_H \ -- 2.41.0 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/20230801091121.334954-1-michael.adler%40siemens.com.
