From 97043b1831a008fe89e9176a8d76c3f939124f5d Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 11 Feb 2012 21:22:19 -0500 Subject: [PATCH] Extending CFLAGS a bit so that stuff breaks if it ain't right --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 03350c8..e721092 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS=-Wall -g -DNDEBUG +CFLAGS=-Wall -Wextra -pedantic-errors -g -DNDEBUG EXERCISES = $(patsubst %.c,%,$(shell ls ex*.c | egrep -v "ex(19|22)"))