/rcdk/inst/unitTests/Makefile
Makefile | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | d68b0df8b5914042fb60a6ed424004b2 MD5 | raw file
1TOP=../.. 2PKG=${shell cd ${TOP};pwd} 3SUITE=doRUnit.R 4R=R 5 6all: inst test 7 8inst: # Install package 9 cd ${TOP}/..;\ 10 ${R} CMD INSTALL ${PKG} 11 12test: # Run unit tests 13 export RCMDCHECK=FALSE;\ 14 cd ${TOP}/tests;\ 15 ${R} --slave < ${SUITE}