From edbb50f74ef3aee9cb8119a54143ba845e3b6de0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 28 Feb 2017 15:16:53 +0100 Subject: [PATCH] Enable more warnings on more TP examples. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- TP_8/exo1/Makefile | 4 ++-- TP_8/exo2/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/TP_8/exo1/Makefile b/TP_8/exo1/Makefile index b24c120..4db03fb 100644 --- a/TP_8/exo1/Makefile +++ b/TP_8/exo1/Makefile @@ -2,8 +2,8 @@ TARGET = exo1 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/TP_8/exo2/Makefile b/TP_8/exo2/Makefile index 184cdd5..20b3d81 100644 --- a/TP_8/exo2/Makefile +++ b/TP_8/exo2/Makefile @@ -2,8 +2,8 @@ TARGET = exo2 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