Rev 9272 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#-*- Makefile -*-## ${RHOME}/src/gnuwin32/check/Maketestssrcdir = .R= $(RHOME)/bin/Rterm --vanillaRDIFF = $(RHOME)/src/scripts/RdiffRVAL_IF_DIFF=0test-src-strict-1 = \arith-true.R \arith.R \d-p-q-r-tests.R \eval-etc.R \is-things.R \lm-tests.R \primitive-funs.R \method-dispatch.R \simple-true.Rtest-src-strict-auto = \isas-tests.Rtest-src-sloppy-1 = \print-tests.Rtest-src-sloppy-auto = \no-segfault.Rtest-src-strict = $(test-src-strict-1) $(test-src-strict-auto)test-src-sloppy = $(test-src-sloppy-1) #$(test-src-sloppy-auto)test-src-auto = $(test-src-strict-auto) $(test-src-sloppy-auto)test-src = $(test-src-strict) $(test-src-sloppy)test-out-strict = $(test-src-strict:.R=.Rout)test-out-sloppy = $(test-src-sloppy:.R=.Rout).SUFFIXES:.SUFFIXES: .R .Rin .Rout.Rin.R:@echo "creating \`$@'"@$(R) < $< > /dev/null.R.Rout:@rm -f $@ $@.fail@echo "running \`$<'"@$(R) < $< > $@@if [ -f $(srcdir)/$@.save ] ; then \mv $@ $@.fail; \echo -n \"Comparing \`$@' to \`$(srcdir)/$@.save' ..."; \$(RDIFF) $@.fail $(srcdir)/$@.save $(RVAL_IF_DIFF) || exit 1; \mv $@.fail $@; \echo "OK"; \fiall: test-Specifictest-Specific-strict: $(test-out-strict)test-Specific-sloppy: $(test-out-sloppy)test-Specific:@echo "running strict specific tests"@$(MAKE) -f $(RHOME)/src/gnuwin32/check/Maketests \test-Specific-strict RVAL_IF_DIFF=1@echo "running sloppy specific tests"@$(MAKE) -f $(RHOME)/src/gnuwin32/check/Maketests \test-Specific-sloppy RVAL_IF_DIFF=0clean:@rm -f *.Rout *.Rout.fail $(test-src-auto)