X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=Makefile;h=3c0e965e14bace008c5444111b57306bd6966fad;hp=1c18a866e810a7ecaa79cedee038d942131c395c;hb=eaee02aa09d1db40ea10d3b77e7df1e2e9c6b9ba;hpb=f38f286f39fe03bf72656685c1d7315570919baf diff --git a/Makefile b/Makefile index 1c18a86..3c0e965 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ VERS=1.0 CC?=gcc -CCFLAGS+=-std=c99 -D _DEFAULT_SOURCE -Wall -Wpedantic -g +CCFLAGS+=-std=c99 -D _DEFAULT_SOURCE -Wall -Wpedantic -Wextra -g LIBS= UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Linux) @@ -35,30 +35,27 @@ SOURCES=$(OBJS:.o=.c) dungeon.c advent.h common.h adventure.text Makefile contro .c.o: $(CC) $(CCFLAGS) $(DBX) -c $< -advent: $(OBJS) database.o linenoise.o newdb.o - $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o newdb.o linenoise.o $(LDFLAGS) $(LIBS) +advent: $(OBJS) linenoise.o newdb.o + $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) newdb.o linenoise.o $(LDFLAGS) $(LIBS) -main.o: advent.h database.h database.c common.h newdb.h +main.o: advent.h database.h common.h newdb.h -init.o: advent.h database.h database.c common.h newdb.h +init.o: advent.h database.h common.h newdb.h -actions.o: advent.h database.h database.c common.h +actions.o: advent.h database.h common.h -score.o: advent.h database.h database.c common.h newdb.h +score.o: advent.h database.h common.h newdb.h -misc.o: advent.h database.h database.c common.h newdb.h +misc.o: advent.h database.h common.h newdb.h -saveresume.o: advent.h database.h database.c common.h +saveresume.o: advent.h database.h common.h common.o: common.h -database.o: database.c database.h common.h - $(CC) $(CCFLAGS) $(DBX) -c database.c - newdb.o: newdb.c newdb.h $(CC) $(CCFLAGS) $(DBX) -c newdb.c -database.c database.h: dungeon +database.h: dungeon ./dungeon newdb.c newdb.h: @@ -71,7 +68,7 @@ dungeon: dungeon.o common.o $(CC) $(CCFLAGS) -o $@ dungeon.o common.o clean: - rm -f *.o advent *.html database.[ch] dungeon *.gcno *.gcda + rm -f *.o advent *.html database.h dungeon *.gcno *.gcda rm -f newdb.c newdb.h rm -f README advent.6 MANIFEST *.tar.gz rm -f *~