Do code coverage analysis, and publish the results to GitLab Pages.
[open-adventure.git] / Makefile
index bdd19debe3088f556a37f46fb58b1ab6f62ebb3c..8cdf1b3fc7d41dbf21b3bac1d5b6b6695ad44004 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 # Makefile for the open-source release of adventure 2.5
 
 CC?=gcc
-CCFLAGS=-std=c99
+CCFLAGS=-std=c99 -O0 --coverage
 LIBS=
 UNAME_S := $(shell uname -s)
 ifeq ($(UNAME_S),Linux)
@@ -12,10 +12,10 @@ OBJS=main.o init.o actions1.o actions2.o score.o misc.o database.o
 SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO adventure.text advent.text control advent.h funcs.h
 
 .c.o:
-       $(CC) $(CCFLAGS) -O $(DBX) -c $<
+       $(CC) $(CCFLAGS) $(DBX) -c $<
 
 advent:        $(OBJS) database.o
-       $(CC) $(CCFLAGS) -O $(DBX) -o advent $(OBJS) $(LIBS)
+       $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) $(LIBS)
 
 main.o:                advent.h funcs.h database.h
 
@@ -38,7 +38,7 @@ compile: compile.c
 
 database.c database.h: compile adventure.text
        ./compile
-       $(CC) $(CCFLAGS) -O $(DBX) -c database.c
+       $(CC) $(CCFLAGS) $(DBX) -c database.c
 
 clean:
        rm -f *.o advent advent.html advent.6 database.[ch] compile