Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make a pattern rule dependency optional in a Makefile?

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.

like image 567
Caleb Avatar asked Dec 05 '15 13:12

Caleb


1 Answers

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.

like image 147
MadScientist Avatar answered Oct 27 '22 23:10

MadScientist