X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=f9f99e0e291c76bb204b2cf9c0f9f83b779fee83;hb=41d961304327a91980f408494bb99c5f60278291;hp=dfa14f8ba0ce57bc7e032b9ce5f490ed1952ae42;hpb=014988e9a303f1617be511468d70a235a2826362;p=pdclib diff --git a/Makefile b/Makefile index dfa14f8..f9f99e0 100644 --- a/Makefile +++ b/Makefile @@ -34,18 +34,20 @@ CFLAGS := -Wall -pedantic -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings all: pdclib.a pdclib.a: $(OBJFILES) - @ar r pdclib.a $? + @echo " AR $@" + @ar rc pdclib.a $? + @echo test: $(FILE) $(FILE) tests: 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" + -@rc=0; count=0; echo; 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"; echo testdrivers: $(TSTFILES) regtests: 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" + -@rc=0; count=0; echo; 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"; echo regtestdrivers: $(REGFILES) @@ -102,13 +104,13 @@ help: @echo "help - print this list" %.o: %.c Makefile - @echo " CC $@" + @echo " CC $(patsubst functions/%,%,$@)" @$(CC) $(CFLAGS) -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@ %.t: %.c Makefile pdclib.a - @echo " CC $@" + @echo " CC $(patsubst functions/%,%,$@)" @$(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 $@ + @echo " CC $(patsubst functions/%,%,$@)" + @$(CC) $(CFLAGS) -Wno-format -DTEST -DREGTEST -std=c99 -I./internals $< -o $@