diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-07 00:08:39 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2014-01-07 00:08:39 -0500 |
commit | 08ac01d1308b07a3b41797653848c66a82a36aac (patch) | |
tree | d55af2e79780e45ba33be1ba41e7e1de137acda7 /Makefile | |
parent | 513d8c8d7089960618a1fa00a71442dc39294588 (diff) |
Enable warnings when compiling and fix a few.
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 -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 |