10

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.

0

1 Answer 1

13

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.