X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=9bfc7615c78ffeae0d8ba5965f4f8b48c4bf13a9;hb=c91020ef8946eb46985c864d3408091233eea0d8;hp=7cc747437d8ae1b7594ce3828c0268cb126f6a78;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/Makefile b/Makefile index 7cc7474..9bfc761 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ 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 rename remove _Exit +INTFILES := atomax digits lengthmods 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))) @@ -23,12 +23,12 @@ 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" + -@rc=0; count=0; for file in $(TSTFILES); do echo " TST $$file"; ./$$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" + -@rc=0; count=0; for file in $(REGFILES); do echo " RTST $$file"; ./$$file; rc=`expr $$rc + $$?`; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking system libc): $$count Tests failed: $$rc" regtestdrivers: $(REGFILES) @@ -43,11 +43,17 @@ dist: todolist: -@for file in $(ALLFILES); do grep -H TODO $$file; done; true +fixmelist: + -@for file in $(ALLFILES); do grep -H FIXME $$file; done; true + %.o: %.c Makefile + @echo " CC $@" @$(CC) $(CFLAGS) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@ %.t: %.c Makefile pdclib.a + @echo " CC $@" @$(CC) $(CFLAGS) -DTEST -std=c99 -I./includes -I./internals $< pdclib.a -o $@ %.r: %.c Makefile + @echo " CC $@" @$(CC) $(CFLAGS) -DTEST -DREGTEST -std=c99 -I./internals $< -o $@