X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=571951d39bd62ad1643b8e2e0864ee85feffc366;hb=d9a4e15860242e4dc5bda8c69211ef687db502de;hp=935809707a79a64c34569a3e5e41c45a17a58795;hpb=02c1ddcae6c88b55d2f4de825ee6c6456150b8ae;p=pdclib diff --git a/Makefile b/Makefile index 9358097..571951d 100644 --- a/Makefile +++ b/Makefile @@ -1,28 +1,31 @@ # 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) +SRCFILES := $(shell find . -mindepth 1 -maxdepth 3 -name "*.c") +HDRFILES := $(shell find . -mindepth 1 -maxdepth 3 -name "*.h") OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) +TSTFILES := $(patsubst %.c,%.t,$(SRCFILES)) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) -CPPFLAGS := -MMD -MP -CFLAGS := -g -std=c99 -I./internals/ - .PHONY: all clean dist all: $(OBJFILES) - ar r pdclib.a $(OBJFILES) + ar r pdclib.a $? + +test: $(TSTFILES) + -@rc=0; for file in $(TSTFILES); do ./$$file; rc=`expr $$rc + $$?`; done; echo; echo "Tests failed: $$rc" -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) pdclib.a; do if [ -f $$file ]; then rm $$file; fi; done dist: @tar czf pdclib.tgz $(ALLFILES) %.o: %.c Makefile - $(CC) $(MODE) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ + @$(CC) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./internals -c $< -o $@ +%.t: %.c Makefile + @$(CC) -Wall -DTEST -std=c99 -I./internals/ $< -o $@