X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=5397eab62639ab98d110451432c14841e0fdd9d9;hb=cc5352a4c2c6cc82e72fc360ded634768a625427;hp=43c16571c84f582f686f40b12c313fbb33ef40cd;hpb=25a7ddd22983c5562fb0d9dffbb7a2eabb371b7d;p=pdclib diff --git a/Makefile b/Makefile index 43c1657..5397eab 100644 --- a/Makefile +++ b/Makefile @@ -9,31 +9,28 @@ AUXFILES := Makefile Readme.txt # Directories belonging to the project PROJDIRS := functions includes internals # All source files of the project -SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c") +SRCFILES := $(shell find $(PROJDIRS) -type f -name "*.c") # All header files of the project -HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h") +HDRFILES := $(shell find $(PROJDIRS) -type f -name "*.h") # All .c files in functions/_PDCLIB that do not have a regression test driver 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) -TSTFILES := $(patsubst %.c,%.t,$(SRCFILES)) +TSTFILES := $(patsubst %.c,%_t,$(SRCFILES)) # All regression test drivers (.r) -REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%.r,$(INTFILES)),$(patsubst %.c,%.r,$(SRCFILES))) -# All dependency files (.d) +REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%_r,$(INTFILES)),$(patsubst %.c,%_r,$(SRCFILES))) +# All library dependency files (.d) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) +# All test driver dependency files (_t.d) +TSTDEPFILES := $(patsubst %,%.d,$(TSTFILES)) +# All regression test driver dependency files (_r.d) +REGDEPFILES := $(patsubst %,%.d,$(REGFILES)) # All files belonging to the source distribution ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) -# 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 -fno-builtin -CFLAGS := -g -std=c99 -I./internals -I./testing $(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 -Wuninitialized -Wstrict-prototypes +CFLAGS := -fno-builtin -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 @@ -71,10 +68,10 @@ regtests: regtestdrivers regtestdrivers: $(REGFILES) @echo --include $(DEPFILES) +-include $(DEPFILES) $(TSTDEPFILES) $(REGDEPFILES) clean: - @for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(REGFILES) pdclib.a pdclib.tgz scanf_testdata_*; do if [ -f $$file ]; then rm $$file; fi; done + -@$(RM) $(wildcard $(OBJFILES) $(DEPFILES) $(TSTFILES) $(TSTDEPFILES) $(REGFILES) $(REGDEPFILES) pdclib.a pdclib.tgz scanf_testdata_*) srcdist: @tar czf pdclib.tgz $(ALLFILES) @@ -90,21 +87,11 @@ find: links: @echo "Linking platform/$(PLATFORM)..." - @cd internals && ln -s ../platform/$(PLATFORM)/internals/_PDCLIB_config.h - @cd includes && ln -s ../platform/$(PLATFORM)/includes/float.h - @cd testing && ln -s ../platform/$(PLATFORM)/testing/printf_reference.txt - @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 + @for file in $$(find platform/$(PLATFORM) -mindepth 2 -type f ! -path *.svn* -printf "%P\n"); do ln -s $$(dirname $$file | sed "s@[^/]*@..@g")/platform/$(PLATFORM)/$$file $$file; done unlink: @echo "Unlinking platform files..." - @if [ -f internals/_PDCLIB_config.h ]; then rm internals/_PDCLIB_config.h; fi - @if [ -f includes/float.h ]; then rm includes/float.h; fi - @if [ -f testing/printf_reference.txt ]; then rm testing/printf_reference.txt; 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 + @for dir in $(PROJDIRS); do find $$dir -type l -exec rm {} +; done help: @echo "Available make targets:" @@ -132,13 +119,13 @@ help: %.o: %.c Makefile @echo " CC $(patsubst functions/%,%,$@)" - @$(CC) $(CFLAGS) -MMD -MP -MT "$*.d $*.t $*.o" -I./includes -c $< -o $@ + @$(CC) $(CFLAGS) -MMD -MP -I./includes -c $< -o $@ -%.t: %.c Makefile pdclib.a +%_t: %.c Makefile pdclib.a @echo " CC $(patsubst functions/%,%,$@)" - @$(CC) $(CFLAGS) -DTEST -I./includes $< pdclib.a -o $@ + @$(CC) $(CFLAGS) -MMD -MP -DTEST -I./includes $< pdclib.a -o $@ -%.r: %.c Makefile +%_r: %.c Makefile @echo " CC $(patsubst functions/%,%,$@)" - @$(CC) $(CFLAGS) -Wno-format -DTEST -DREGTEST $< -o $@ + @$(CC) $(CFLAGS) -MMD -MP -DTEST -DREGTEST $< -o $@