X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=Makefile;h=37ae68bb6270b1623bcaf99a02f1e9d7e685bef5;hp=e58d72aa4e4ae2de67abdf9845f3c0bef9d7c632;hb=3a4d6022a8a56836ba9f0e970d091f7fdf0837af;hpb=064097d5ed6eb8c2cfd337c29ac3ebc471e557b8 diff --git a/Makefile b/Makefile index e58d72a..37ae68b 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 := atomax digits seed strtox_main strtox_prelim +INTFILES := atomax digits seed strtox_main strtox_prelim multiinclude 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) -.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: