From 4593ff984d50f6eb003613823c625398b6406390 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 28 Feb 2017 15:10:59 +0100 Subject: [PATCH] Enable more warning at compilation time. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- TP_8/exo3/Makefile | 4 ++-- exo_skel/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/TP_8/exo3/Makefile b/TP_8/exo3/Makefile index c31747a..fc320df 100644 --- a/TP_8/exo3/Makefile +++ b/TP_8/exo3/Makefile @@ -2,8 +2,8 @@ TARGET = exo3 LIBS = CC = gcc # Enforce C11 ISO standard for now -CFLAGS = -std=c11 -g -Wall -LDFLAGS = -g -Wall +CFLAGS = -std=c11 -g -Wall -Wextra +LDFLAGS = -g -Wall -Wextra .PHONY: default all clean diff --git a/exo_skel/Makefile b/exo_skel/Makefile index 51af164..1822902 100644 --- a/exo_skel/Makefile +++ b/exo_skel/Makefile @@ -2,8 +2,8 @@ TARGET = exo_skel LIBS = CC = gcc # Enforce C11 ISO standard for now -CFLAGS = -std=c11 -g -Wall -LDFLAGS = -g -Wall +CFLAGS = -std=c11 -g -Wall -Wextra +LDFLAGS = -g -Wall -Wextra .PHONY: default all clean -- 2.34.1