Reorganize debug build options. 105/head
authorJason S. Ninneman <jsn@mbar.us>
Mon, 19 Jun 2017 04:11:06 +0000 (21:11 -0700)
committerJason S. Ninneman <jsn@mbar.us>
Mon, 19 Jun 2017 04:11:06 +0000 (21:11 -0700)
* 'make advent' by itself can be considered the 'release' build.
* 'make debug' now does 'make linty'.

Makefile

index 11795079fab5059db4464689c51006a790280439..55e4ace2f51c31c4f0a77f1ca3edb95b074fe743 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@
 VERS=1.0
 
 CC?=gcc
-CCFLAGS+=-std=c99 -D _DEFAULT_SOURCE -Wpedantic -g
+CCFLAGS+=-std=c99 -D _DEFAULT_SOURCE -Wpedantic -O2
 LIBS=
 UNAME_S := $(shell uname -s)
 ifeq ($(UNAME_S),Linux)
@@ -138,8 +138,7 @@ linty: CCFLAGS += -Wwrite-strings
 linty: CCFLAGS += -Wunreachable-code
 linty: CCFLAGS += -Winit-self
 linty: CCFLAGS += -Wpointer-arith
-linty: CCFLAGS +=-O2 
 linty: advent
 
-debug: CCFLAGS += -O0 --coverage -g
-debug: advent
+debug: CCFLAGS += -O0 --coverage -ggdb
+debug: linty