X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=e883e60be371a1052067375c94d1d3a5e5b19361;hb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;hp=71f2c1e761ad9855c7c26e70daf41ea56d8304b3;hpb=ba5eff8dd9b426485e1559b5d6204692d155d9e8;p=pdclib diff --git a/Makefile b/Makefile index 71f2c1e..e883e60 100644 --- a/Makefile +++ b/Makefile @@ -1,35 +1,51 @@ # This is a list of all non-source files that are part of the distribution. AUXFILES := Makefile Readme.txt -SRCFILES := $(shell find . -name "*.c" -mindepth 1 -maxdepth 3) -HDRFILES := $(shell find . -name "*.h" -mindepth 1 -maxdepth 3) +PROJDIRS := functions includes internals +SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c") +HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h") +INTFILES := atomax digits seed strtox_main strtox_prelim rename remove _Exit OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) TSTFILES := $(patsubst %.c,%.t,$(SRCFILES)) +REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%.r,$(INTFILES)),$(patsubst %.c,%.r,$(SRCFILES))) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) -CPPFLAGS := -MMD -MP -CFLAGS := -g -std=c99 -I./internals/ +CFLAGS := -Wall -pedantic -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -Wconversion -Wstrict-prototypes -.PHONY: all clean dist +.PHONY: clean dist test testdrivers regtest -all: $(OBJFILES) - ar r pdclib.a $(OBJFILES) +all: pdclib.a -test: $(TSTFILES) - -@rc=0; for file in $(TSTFILES); do ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Tests failed: $$rc" +pdclib.a: $(OBJFILES) + @ar r pdclib.a $? + +test: testdrivers + -@rc=0; count=0; for file in $(TSTFILES); do ./$$file; rc=`expr $$rc + $$?`; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking PDCLib): $$count Tests failed: $$rc" + +testdrivers: $(TSTFILES) + +regtest: regtestdrivers + -@rc=0; count=0; for file in $(REGFILES); do ./$$file; rc=`expr $$rc + $$?`; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking system libc): $$count Tests failed: $$rc" + +regtestdrivers: $(REGFILES) -include $(DEPFILES) clean: - -@for file in $(OBJFILES) $(DEPFILES) pdclib.a; do if [ -f $$file ]; then rm $$file; fi; done + @for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(REGFILES) pdclib.a pdclib.tgz; do if [ -f $$file ]; then rm $$file; fi; done dist: @tar czf pdclib.tgz $(ALLFILES) +todolist: + -@for file in $(ALLFILES); do grep -H TODO $$file; done; true + %.o: %.c Makefile - $(CC) -DNDEBUG -c $(CPPFLAGS) $(CFLAGS) $< -o $@ + @$(CC) $(CFLAGS) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@ -%.t: %.c Makefile - $(CC) -DTEST $(CFLAGS) $< -o $@ +%.t: %.c Makefile pdclib.a + @$(CC) $(CFLAGS) -DTEST -std=c99 -I./includes -I./internals $< pdclib.a -o $@ +%.r: %.c Makefile + @$(CC) $(CFLAGS) -DTEST -DREGTEST -std=c99 -I./internals $< -o $@