Jonny Grant (24 May 2017 10:15)
So if missingfile.mak was generated? Would make then read it in and
process it?
Yes, it would - if it can find a rule that lets it make the file it was
told to use, it'll exercise that rule and then restart itself. On this
restart, it would find the file exists and get on with using it.
I guess I thought it would just be better for make to halt and exit
after that line
make: missingfile.mak: No such file or directory
When there *is* a way for it to generate the missing file, generating it
and restarting (after producing this warning) is surely a better
response - it lets make succeed in doing what the user asked for,
Eddy.