search for: doneforc

Displaying 1 result from an estimated 1 matches for "doneforc".

Did you mean: doneforce
2009 Apr 09
0
how to add a target to the Make that R CMD check uses for running tests?
...make/manual/make/Force-Targets.html # Based on code at # http://www.gnu.org/software/automake/manual/make/Overriding-Makefiles.html # but with more levels of protection to avoid calling make with # the target 'all-Rt' more than once, because this makefile is # read many times. Condition on DONEFORCE being not defined # to avoid infinite recursion. ifeq ($(strip $(DONEFORCE)),) %: force @(if [ ! -f forceonce ] ; then \ $(MAKE) -f $(R_SHARE_DIR)/make/$(RSHAREMAKEFILE) $(makevars) -f $(MAINTESTMAKE) DONEFORCE=TRUE all-Rt ; \ fi ) @touch forceonce force: ; endif This code causes 'make...