X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=9aa1c89eb3128824eaa3746c540ff256fbc89ec3;hb=9ee0e8c5b5df0b114218e28753e6c0291cb356a3;hp=935809707a79a64c34569a3e5e41c45a17a58795;hpb=02c1ddcae6c88b55d2f4de825ee6c6456150b8ae;p=pdclib diff --git a/Makefile b/Makefile index 9358097..9aa1c89 100644 --- a/Makefile +++ b/Makefile @@ -1,28 +1,62 @@ +# $Id$ + # 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 := _Exit atomax digits lengthmods print rename remove seed strtox_main strtox_prelim 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: clean dist test testdrivers regtest + +all: pdclib.a + +pdclib.a: $(OBJFILES) + @ar r pdclib.a $? + +test: testdrivers + -@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" -.PHONY: all clean dist +testdrivers: $(TSTFILES) -all: $(OBJFILES) - ar r pdclib.a $(OBJFILES) +regtest: regtestdrivers + -@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) -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 + +fixmelist: + -@for file in $(ALLFILES); do grep -H FIXME $$file; done; true + +find: + @find functions/ includes/ internals/ platform/ -name "*\.[ch]" -type f | xargs grep $$FIND + %.o: %.c Makefile - $(CC) $(MODE) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ + @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 $@