diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-07 00:02:44 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-07 00:02:44 -0500 |
commit | 3aa979db127d362bb84ccab86c0f13185a34e9fa (patch) | |
tree | 441caa8d68b5302f2268e37f21999b60f139dbb5 /Makefile | |
parent | 871b3cb04aaa24637a3b2bfae7082dfacf34f7d2 (diff) |
Don't supress warnings when compiling, argh!
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ CC = gcc INCLUDES = -Isrc -Ideps/bitfield-c/src -Ideps/isotp-c/src -CFLAGS = $(INCLUDES) -c -w -Wall -Werror -g -ggdb -std=gnu++0x -coverage +CFLAGS = $(INCLUDES) -c -Wall -Werror -g -ggdb -std=gnu99 -coverage LDFLAGS = -coverage -lm LDLIBS = -lcheck |