X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=266558f2ab7408cda917e391b77f53be9df76bcc;hb=76fa86a67357dcff4527631f5f9f46e4e780c530;hp=09d02ec90e51faa14753a60fcdfd5e985af044da;hpb=2adfe66e888f6badcc41b8f034d6e34e1e0e4be8;p=pdclib diff --git a/Makefile b/Makefile index 09d02ec..266558f 100644 --- a/Makefile +++ b/Makefile @@ -29,12 +29,15 @@ REGDEPFILES := $(patsubst %,%.d,$(REGFILES)) # All files belonging to the source distribution ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) +# TODO: This must be possible without four discrete steps. # 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) +# All files in platform/$(PLATFORM)/functions/signal (for development only) +PATCHFILES4 := $(shell ls platform/$(PLATFORM)/functions/signal/*.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) @@ -61,6 +64,7 @@ pdclib.a: $(OBJFILES) @echo test: functions/$(FILE) + echo $(TSTDEPFILES) functions/$(FILE) tests: testdrivers @@ -78,8 +82,6 @@ regtestdrivers: $(REGFILES) #-include $(DEPFILES) $(TSTDEPFILES) $(REGDEPFILES) clean: - echo $(TSTFILES) - echo $(TSTDEPFILES) @for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(TSTDEPFILES) $(REGFILES) $(REGDEPFILES) pdclib.a pdclib.tgz scanf_testdata_*; do if [ -f $$file ]; then rm $$file; fi; done srcdist: @@ -98,16 +100,15 @@ 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 + @cd functions/signal && for file in $(PATCHFILES4); do basfile=`basename $$file`; if [ ! -f $$basfile ]; then ln -s `ls ../../$$file` .; fi; 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