Test coverage - Almost all of score.c
[open-adventure.git] / Makefile
index 11795079fab5059db4464689c51006a790280439..cc87a2b3f12a7fd10d49c2669bb00d070b140d9a 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)
@@ -115,7 +115,7 @@ indent:
 release: advent-$(VERS).tar.gz advent.html history.html hints.html notes.html
        shipper version=$(VERS) | sh -e -x
 
-refresh: advent.html
+refresh: advent.html notes.html history.html
        shipper -N -w version=$(VERS) | sh -e -x
 
 dist: advent-$(VERS).tar.gz
@@ -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