Rev 10090 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# -*- Makefile -*-## ${R_HOME}/etc/Makeconf-testsECHO_C =ECHO_N = -nECHO_T =makevars =srcdir = .VPATH = .test-src = $(test-src-1) $(test-src-auto)test-out = $(test-src:.R=.Rout)R = srcdir=$(srcdir) $(R_HOME)/bin/Rterm.exe --vanillaRDIFF = $(R_HOME)/src/scripts/Rdiff.SUFFIXES:.SUFFIXES: .R .Rin .Rout.Rin.R:@echo "Creating \`$@'"@$(R) < $< > /dev/null.R.Rout:@rm -f $@ $@.fail@echo " Running \`$<'"@-$(R) R_LIBS=$(R_LIBS) < $< > $@@if test -f $(srcdir)/$@.save; then \mv $@ $@.fail; \echo -n " Comparing \`$@' to \`$@.save' ..."; \$(RDIFF) $@.fail $(srcdir)/$@.save 0 || exit 1; \mv $@.fail $@; \echo "OK"; \fiall:@(out=`echo "$(test-out)" | sed 's/ $$//g'`; \if test -n "$${out}"; then \$(MAKE) -f $(R_HOME)/etc/Makeconf-tests VPATH=$(VPATH) R_LIBS=$(R_LIBS) srcdir=$(srcdir) $${out}; \fi)clean:@rm -f $(test-out) $(test-src-auto) *.fail