X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=41469adcf99b8f1c2fa9a0ec0bd939ab07ecc75f;hb=27314fc44f0f9f4d26ebf0ba179f08f0e7257ffa;hp=2c31fe886d768a5fa4dccc475bb32a101cf12716;hpb=40d888d0440b4cfa1ac6684338221d4514348222;p=pdclib diff --git a/Makefile b/Makefile index 2c31fe8..41469ad 100644 --- a/Makefile +++ b/Makefile @@ -27,15 +27,18 @@ PATCHFILES1 := $(shell ls platform/example/functions/_PDCLIB/*.c) # All files in platform/example/functions/stdlib (for development only) PATCHFILES2 := $(shell ls platform/example/functions/stdlib/*.c) -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 +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 -fno-builtin -.PHONY: all clean dist tests testdrivers regtests regtestdrivers todos fixmes find links unlink help +.PHONY: all clean dist test tests testdrivers regtests regtestdrivers todos fixmes find links unlink help all: pdclib.a pdclib.a: $(OBJFILES) @ar r pdclib.a $? +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" @@ -83,6 +86,7 @@ help: @echo "all - build pdclib.a" @echo "clean - remove all object files, dependency files and test drivers" @echo "dist - build pdclib.tgz (source tarball)" + @echo "test - test a single testdriver (Usage: FILE=\"test.[rt]\" make test)" @echo "tests - build and run test drivers (link pdclib.a)" @echo " testdrivers - build but do not run test drivers" @echo "regtests - build and run regression test drivers (link system clib)" @@ -99,7 +103,7 @@ help: %.o: %.c Makefile @echo " CC $@" - @$(CC) $(CFLAGS) -Wall -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@ + @$(CC) $(CFLAGS) -DNDEBUG -MMD -MP -MT "$*.d $*.t" -g -std=c99 -I./includes -I./internals -c $< -o $@ %.t: %.c Makefile pdclib.a @echo " CC $@"