Enable more warnings on more TP examples.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 28 Feb 2017 14:16:53 +0000 (15:16 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 28 Feb 2017 14:16:53 +0000 (15:16 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP_8/exo1/Makefile
TP_8/exo2/Makefile

index b24c120ef45613c5934f04453e1346e06ca1680e..4db03fbdca555dab9af73317396e446e35172d53 100644 (file)
@@ -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
 
index 184cdd5e86f320e4066d47e47bdf55fceef7e23c..20b3d810da6066a46ffdc535cffc38628da68388 100644 (file)
@@ -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