I am a makefile newbie but would like to try them out. I have installed Rstudio, Rtools, and Gnu Make 3.2 but when I try to test a simple makefile in RStudio I get the following error message:
(It says "'make' is not recognized as an internal or external command, operable program or batch file. \n\nExited with status 1.")
I suspect this might be a PATH issue; there is no reference to Gnu make there but as I said, I rarely dig into the guts of R and never with make. So can anyone advise?
An error message like this nearly always means that either the program hasn't been installed, has been installed under a different name or, most often, it is not findable because it is not in the path of directories searched.
As it appears that the system is running under Windows, I can't help further, since it's been 15 years since I've worked in that environment