Pattern rule with partial dependency

115 Views Asked by At

I have a makefile with a bunch of .R scripts that create .csv files as output. These files are then used in a python simulation.

all: $(FILES)
  python simulation.py

$(FILES): %.csv: %.R 
  Rscript $<

This is straightforward. My wrinkle is that one (and only one) of the .R scripts has its own dependency, say sourcedata. It seems that placing this dependency in the pattern would be annoying

all: $(FILES)
  python simulation.py

$(FILES): %.csv: %.R sourcedata
  Rscript $<

sourcedata:
  wget "sourcedata.zip"

But doing it like all: sourcedata $(FILES) and relying on order-of-operations would be less effective. I guess that I could also give that R file its own phony rule

problem_script.R: sourcedata
  @echo R script read

but I haven't been able to test if that will work. Is there an established way to do this?

1

There are 1 best solutions below

2
On BEST ANSWER

Unless I'm misunderstanding, you need to specify that the particular CSV file needs to be rebuilt whenever either the R file or the sourcedata file changes, right?

If so, just add this:

problem_script.csv: sourcedata

(no recipe needed). This declares an extra prerequisite for that particular CSV file, so whenever it's out of date with respect to sourcedata it will be rebuilt.