X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=Makefile;h=37ae68bb6270b1623bcaf99a02f1e9d7e685bef5;hp=23b815b2ea6c314871ae1c64c580382f65c36c30;hb=4bf4b212eb8f7a96145b06f91db453fbec396ce8;hpb=e0c001ed65098c95b7b9e390a27633ad5139a103 diff --git a/Makefile b/Makefile index 23b815b..37ae68b 100644 --- a/Makefile +++ b/Makefile @@ -4,30 +4,46 @@ 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 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: all clean dist +.PHONY: clean dist test testdrivers regtest -all: $(OBJFILES) +all: pdclib.a + +pdclib.a: $(OBJFILES) @ar r pdclib.a $? -test: $(TSTFILES) - -@rc=0; for file in $(TSTFILES); do echo "Testing $$file..."; ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Tests failed: $$rc" +test: testdrivers + -@rc=0; for file in $(TSTFILES); do ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Tests failed: $$rc" + +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: - -@for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) 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) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./internals -c $< -o $@ + @$(CC) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@ -%.t: %.c Makefile all - @$(CC) -Wall -DTEST -std=c99 -I./internals/ $< pdclib.a -o $@ +%.t: %.c Makefile pdclib.a + @$(CC) -Wall -DTEST -std=c99 -I./includes -I./internals $< pdclib.a -o $@ +%.r: %.c Makefile + @$(CC) -Wall -DTEST -DREGTEST -std=c99 -I./internals $< -o $@