Adding back the -std argument to CFLAGS so that we're allowed to use '//' comments

This commit is contained in:
Dan Buch 2012-02-13 21:54:10 -05:00
parent c2d4d59032
commit 0b956cbf06

View File

@ -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)"))