From 0f3d3f735f4b2e78f3891b5f779a22259c17fa81 Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Sun, 18 Jun 2017 21:11:06 -0700 Subject: [PATCH] Reorganize debug build options. * 'make advent' by itself can be considered the 'release' build. * 'make debug' now does 'make linty'. --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1179507..55e4ace 100644 --- 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 -- 2.31.1