From 0b956cbf0606dcac2ea7da114616951d9acaf2d3 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 13 Feb 2012 21:54:10 -0500 Subject: [PATCH] Adding back the -std argument to CFLAGS so that we're allowed to use '//' comments --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 846874e..4b9e702 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS=-Wall -Wextra -pedantic -g -DNDEBUG +CFLAGS += -Wall -Wextra -pedantic -std=gnu99 -g -DNDEBUG EXERCISES = $(patsubst %.c,%,$(shell ls ex*.c | egrep -v "ex(19|22)"))