X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=Makefile;h=0acd1cc6132e91de48c5445930759832302f499b;hp=bfd64b93e3f03bacdbf87dcf34cfb9b95955598b;hb=503482a69dc7992ff641e805e42db956875f9550;hpb=f93d55176e4db9edfb1840054169003bcca4d1fb diff --git a/Makefile b/Makefile index bfd64b9..0acd1cc 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ # $Id$ +# This is where you chose which platform to compile for (see 'make links' / './platform') +PLATFORM := example + # This is a list of all non-source files that are part of the distribution. AUXFILES := Makefile Readme.txt @@ -10,7 +13,7 @@ SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c") # All header files of the project HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h") # All .c files in functions/_PDCLIB that do not have a regression test driver -INTFILES := _Exit atomax digits open print remove rename seed stdinit strtox_main strtox_prelim cleanstream fflush filemode +INTFILES := _Exit atomax digits open print scan remove rename seed stdinit strtox_main strtox_prelim filemode eol errno seek prepread prepwrite allocpages tmpfilename closeall # All object files in the library OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) # All test drivers (.t) @@ -22,17 +25,31 @@ DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) # All files belonging to the source distribution ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) -# All files in platform/example/functions/_PDCLIB (for development only) -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) +# All files in platform/$(PLATFORM)/functions/_PDCLIB (for development only) +PATCHFILES1 := $(shell ls platform/$(PLATFORM)/functions/_PDCLIB/*.c) +# All files in platform/$(PLATFORM)/functions/stdlib (for development only) +PATCHFILES2 := $(shell ls platform/$(PLATFORM)/functions/stdlib/*.c) +# All files in platform/$(PLATFORM)/functions/stdio (for development only) +PATCHFILES3 := $(shell ls platform/$(PLATFORM)/functions/stdio/*.c) -WARNINGS := -Wall -Wextra -pedantic -Wno-unused-parameter -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -Wconversion -fno-builtin -CFLAGS := -g -std=c99 -I./internals $(WARNINGS) $(USERFLAGS) +WARNINGS := -Wall -Wextra -pedantic -Wno-unused-parameter -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wno-long-long -fno-builtin +CFLAGS := -g -std=c99 -I./internals -I./testing $(WARNINGS) $(USERFLAGS) .PHONY: all clean srcdist bindist test tests testdrivers regtests regtestdrivers todos fixmes find links unlink help -all: pdclib.a +all: pdclib.a testdrivers regtestdrivers + @echo + @echo "========================" + @echo "Executing library tests:" + @echo "========================" + @echo + @$(MAKE) tests | grep -v "^ TST" | grep -v "^Failed" + @echo + @echo "===========================" + @echo "Executing regression tests:" + @echo "===========================" + @echo + @$(MAKE) regtests | grep -v "^ RTST" | grep -v "^Failed" pdclib.a: $(OBJFILES) @echo " AR $@" @@ -43,19 +60,21 @@ test: functions/$(FILE) functions/$(FILE) tests: testdrivers - -@rc=0; count=0; failed=""; echo; for file in $(TSTFILES); do echo " TST $$file"; ./$$file; test=$$?; if [ $$test != 0 ]; then rc=`expr $$rc + $$test`; failed="$$failed $$file"; fi; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking PDCLib): $$count Tests failed: $$rc"; echo; for file in $$failed; do echo "Failed: $$file"; done; + -@rc=0; count=0; failed=""; for file in $(TSTFILES); do echo " TST $$file"; ./$$file; test=$$?; if [ $$test != 0 ]; then rc=`expr $$rc + $$test`; failed="$$failed $$file"; fi; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking PDCLib): $$count Tests failed: $$rc"; echo; for file in $$failed; do echo "Failed: $$file"; done; echo testdrivers: $(TSTFILES) + @echo regtests: regtestdrivers - -@rc=0; count=0; failed=""; echo; for file in $(REGFILES); do echo " RTST $$file"; ./$$file; test=$$?; if [ $$test != 0 ]; then rc=`expr $$rc + $$test`; failed="$$failed $$file"; fi; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking system libc): $$count Tests failed: $$rc"; echo; for file in $$failed; do echo "Failed: $$file"; done; + -@rc=0; count=0; failed=""; for file in $(REGFILES); do echo " RTST $$file"; ./$$file; test=$$?; if [ $$test != 0 ]; then rc=`expr $$rc + $$test`; failed="$$failed $$file"; fi; count=`expr $$count + 1`; done; echo; echo "Tests executed (linking system libc): $$count Tests failed: $$rc"; echo; for file in $$failed; do echo "Failed: $$file"; done; echo regtestdrivers: $(REGFILES) + @echo -include $(DEPFILES) clean: - @for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(REGFILES) pdclib.a pdclib.tgz; do if [ -f $$file ]; then rm $$file; fi; done + @for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(REGFILES) pdclib.a pdclib.tgz scanf_testdata_*; do if [ -f $$file ]; then rm $$file; fi; done srcdist: @tar czf pdclib.tgz $(ALLFILES) @@ -67,14 +86,15 @@ fixmes: -@for file in $(ALLFILES); do grep -H FIXME $$file; done; true find: - @find functions/ includes/ internals/ platform/ old_stdio/ -name "*\.[ch]" -type f | xargs grep $$FIND + @find functions/ includes/ internals/ platform/ -name "*\.[ch]" -type f | xargs grep $$FIND links: - @echo "Linking platform/example..." - @cd internals && ln -s ../platform/example/internals/_PDCLIB_config.h - @cd includes && ln -s ../platform/example/includes/float.h + @echo "Linking platform/$(PLATFORM)..." + @cd internals && ln -s ../platform/$(PLATFORM)/internals/_PDCLIB_config.h + @cd includes && ln -s ../platform/$(PLATFORM)/includes/float.h @cd functions/_PDCLIB && for file in $(PATCHFILES1); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done @cd functions/stdlib && for file in $(PATCHFILES2); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done + @cd functions/stdio && for file in $(PATCHFILES3); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; done unlink: @echo "Unlinking platform files..." @@ -82,6 +102,7 @@ unlink: @if [ -f includes/float.h ]; then rm includes/float.h; fi @cd functions/_PDCLIB && for file in $(PATCHFILES1); do basfile=`basename $$file`; if [ -f $$basfile ]; then rm $$basfile; fi; done @cd functions/stdlib && for file in $(PATCHFILES2); do basfile=`basename $$file`; if [ -f $$basfile ]; then rm $$basfile; fi; done + @cd functions/stdio && for file in $(PATCHFILES3); do basfile=`basename $$file`; if [ -f $$basfile ]; then rm $$basfile; fi; done help: @echo "Available make targets:" @@ -97,8 +118,8 @@ help: @echo "todos - list all TODO comments in the sources" @echo "fixmes - list all FIXME comments in the sources" @echo "find - find a phrase in the sources (Usage: FIND=\"phrase\" make find)" - @echo "links - link example platform files (development only)" - @echo "unlink - remove links to example platform files (development only)" + @echo "links - link platform files (development only)" + @echo "unlink - remove links to platform files (development only)" @echo "%.o - build an individual object file" @echo "%.t - build an individual test driver" @echo "%.r - build an individual regression test driver" @@ -109,7 +130,7 @@ help: %.o: %.c Makefile @echo " CC $(patsubst functions/%,%,$@)" - @$(CC) $(CFLAGS) -MMD -MP -MT "$*.d $*.t" -I./includes -c $< -o $@ + @$(CC) $(CFLAGS) -MMD -MP -MT "$*.d $*.t $*.o" -I./includes -c $< -o $@ %.t: %.c Makefile pdclib.a @echo " CC $(patsubst functions/%,%,$@)"