R/make.R

Defines functions make

Documented in make

#' Call GNU make 
#'
#' @param target to be made
#' @param intern indicates whether to capture the output
#'  
#' @return
#' @export

make <- function(target, intern = FALSE) {
  cmd <- paste("make", target)
  system(cmd, intern=intern)
}
simecek/maker documentation built on May 29, 2019, 10:01 p.m.