X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=7bfb4011f651fab6f1845a44d2ad728b3a4bc840;hb=40491b595bb70b20781cc10e235ebf6f1f7b2455;hp=802e28e3272c6637a5c8a079a304769be6a435f7;hpb=c297360e2e867ca1cfdd14cd11f9392ead15e581;p=pdclib diff --git a/Makefile b/Makefile index 802e28e..7bfb401 100644 --- a/Makefile +++ b/Makefile @@ -4,26 +4,30 @@ AUXFILES := Makefile Readme.txt 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 := $(patsubst %.c,%.r,$(shell find functions/_PDCLIB -name "*.c")) +INTFILES := atomax digits seed strtox_main strtox_prelim OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) TSTFILES := $(patsubst %.c,%.t,$(SRCFILES)) -REGFILES := $(filter-out $(INTFILES),$(patsubst %.c,%.r,$(SRCFILES))) +REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%.r,$(INTFILES)),$(patsubst %.c,%.r,$(SRCFILES))) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) -.PHONY: clean dist test regtest +.PHONY: clean dist test testdrivers regtest all: pdclib.a pdclib.a: $(OBJFILES) @ar r pdclib.a $? -test: $(TSTFILES) +test: testdrivers -@rc=0; for file in $(TSTFILES); do ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Tests failed: $$rc" -regtest: $(REGFILES) +testdrivers: $(TSTFILES) + +regtest: regtestdrivers -@rc=0; for file in $(REGFILES); do ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Regression tests failed: $$rc" +regtestdrivers: $(REGFILES) + -include $(DEPFILES) clean: