X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=bfa74c69d0aa340800056427a2080da0b7fc78ec;hb=a7a8d2f1c85c2d7760d4d3479e90466cc3a81b04;hp=c13db6b614bbbfb0da00185bfbc2e66675d099d7;hpb=94e01496f70415d178520d2a7bcfc4081be4413b;p=pdclib diff --git a/Makefile b/Makefile index c13db6b..bfa74c6 100644 --- a/Makefile +++ b/Makefile @@ -23,9 +23,9 @@ REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%_r,$(INTFILES)),$(patsu # All library dependency files (.d) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) # All test driver dependency files (_t.d) -TSTDEPFILES := $(patsubst %.c,%_t.d,$(TSTFILES)) +TSTDEPFILES := $(patsubst %,%.d,$(TSTFILES)) # All regression test driver dependency files (_r.d) -REGDEPFILES := $(patsubst %.c,%_r.d,$(REGFILES)) +REGDEPFILES := $(patsubst %,%.d,$(REGFILES)) # All files belonging to the source distribution ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES) @@ -61,6 +61,7 @@ pdclib.a: $(OBJFILES) @echo test: functions/$(FILE) + echo $(TSTDEPFILES) functions/$(FILE) tests: testdrivers @@ -75,7 +76,7 @@ regtests: regtestdrivers regtestdrivers: $(REGFILES) @echo --include $(DEPFILES) $(TSTDEPFILES) $(REGDEPFILES) +#-include $(DEPFILES) $(TSTDEPFILES) $(REGDEPFILES) clean: @for file in $(OBJFILES) $(DEPFILES) $(TSTFILES) $(TSTDEPFILES) $(REGFILES) $(REGDEPFILES) pdclib.a pdclib.tgz scanf_testdata_*; do if [ -f $$file ]; then rm $$file; fi; done @@ -96,7 +97,6 @@ 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 @@ -105,7 +105,6 @@ 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