X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=Makefile;h=91ec3b672c9530ebd37f6d9acaf4003bcffd6df2;hp=906698a6b8f0cdf4e6e835c8f792b74f23b3f91e;hb=4a4c113624239b55b176ee23ed8e23c2337d42e2;hpb=634cd0f17f93e3864d494aa099434fa0f0cb379e diff --git a/Makefile b/Makefile index 906698a..91ec3b6 100644 --- a/Makefile +++ b/Makefile @@ -12,11 +12,6 @@ CCFLAGS+=-std=c99 -D_DEFAULT_SOURCE -DVERSION=\"$(VERS)\" -O2 LIBS=$(shell pkg-config --libs libedit) INC+=$(shell pkg-config --cflags libedit) -UNAME_S := $(shell uname -s) -ifeq ($(UNAME_S),Linux) - LIBS+=-lrt -endif - OBJS=main.o init.o actions.o score.o misc.o saveresume.o CHEAT_OBJS=cheat.o init.o actions.o score.o misc.o saveresume.o SOURCES=$(OBJS:.o=.c) advent.h adventure.yaml Makefile control make_dungeon.py @@ -45,7 +40,7 @@ dungeon.o: dungeon.c dungeon.h $(CC) $(CCFLAGS) $(DBX) -c dungeon.c dungeon.c dungeon.h: make_dungeon.py adventure.yaml - python3 make_dungeon.py + ./make_dungeon.py clean: rm -f *.o advent cheat *.html *.gcno *.gcda @@ -126,3 +121,6 @@ debug: CCFLAGS += -O0 --coverage -ggdb debug: linty debug: cheat +CSUPPRESSIONS = --suppress=missingIncludeSystem --suppress=invalidscanf +cppcheck: + cppcheck -I. --template gcc --enable=all $(CSUPPRESSIONS) *.[ch]