1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#-*- Makefile -*-
#
# ${R_HOME}/tests/Makefile.install
## Keep in step with Makefile.install
srcdir = .
top_srcdir = ..
top_builddir = ..
all check: test-all-basics
check-devel: check test-all-devel
check-all: check-devel test-Recommended
include $(top_builddir)/etc$(R_ARCH)/Makeconf
include Makefile.common
## GNU gettext disables LANGUAGE if LC_ALL=C, but other systems might not.
R = $(R_HOME)/$(BINDIR)/Rterm --vanilla LANGUAGE=en LC_ALL=C SRCDIR=. R_DEFAULT_PACKAGES=
R2 = $(R_HOME)/$(BINDIR)/Rterm --vanilla SRCDIR=. R_DEFAULT_PACKAGES=
RCHK = $(R_HOME)/$(BINDIR)/Rcmd check
RDIFF = $(R_HOME)/$(BINDIR)/R CMD Rdiff
RVAL_IF_DIFF=0
## suppress fancy quotes for diff-ing
RDCONV = LC_ALL=C $(R_HOME)/$(BINDIR)/Rcmd Rdconv
MK = $(MAKE)
all-basic-tests = BasePackages Specific Reg Internet
## Keep in line with Makefile.common.
## not Docs Standalone Packages
all-devel-tests = DateTime IsAs Random Demo Primitive Regexp Translation \
Internet2 CRANtools Segfault Conditions Misc-dev
## <NOTE>
## These depend on an internet connection, and the sites being up.
## So allow this to fail: it may be slow doing so.
test-Internet:
@$(ECHO) "running tests of Internet functions"
-@$(MAKE) $(test-out-internet) RVAL_IF_DIFF=0
## </NOTE>
test-BasePackages:
@$(MKINSTALLDIRS) Packages
@$(ECHO) "tools::testInstalledPackages(outDir='Packages', scope='base')" | $(R) --no-echo
test-Recommended:
@$(MKINSTALLDIRS) Packages
@$(ECHO) "tools::testInstalledPackages(outDir='Packages', scope='recommended')" | $(R) --no-echo
mostlyclean: clean
clean:
-@rm -f reg-*.pdf p-qbeta-strict-tst.pdf ex.gz
-@rm -Rf myTst* myLib myLib_2
-@rm -f p-r-random-tests_seed
-@rm -f Rplots* Rprof.out Rprofmem.out data dumpdata.R mirrors.html \
.Rd l0.Rd m0.Rd df0.Rd ./*-package.Rd .RData
distclean: clean
-@rm -f $(test-out) $(test-src-auto) *.Rout.fail
-@rm -Rf Packages
maintainer-clean: distclean
|