Reputation: 5428
I would like make to reference the timestamp of a dependency if and only if the file already exists. I have a pattern rule like this:
%.pdf: %.sil
sile $< -o $@
This works great in normal situations, but the .sil file makes an external reference to a lua file of the same name if it exists. How do I make make aware of this so it checks the timestamps and regenerates the PDF if the lua file is newer but ignores the dependency if the file doesn't exist at all?
This:
%.pdf: %.sil %.lua
sile $< -o $@
…only works for cases where the file exists and causes an error if it doesn't.
Upvotes: 10
Views: 2320
Reputation: 100836
With a sufficiently new version of GNU make you can use:
.SECONDEXPANSION:
%.pdf: %.sil $$(wildcard $$*.lua)
sile $< -o $@
See the manual section for SECONDEXPANSION targets and the wildcard function.
Upvotes: 14