I noticed that when I make changes to some files and then I type make, it will run certain commands related to those files. If I don't change anything, then make doesn't do anything, saying that the program is up to date. This tells me that make has a way of knowing which files were changed since it was last run. How does it know? It doesn't seem to put anything in the directory where it is run, so it must be storing this information somewhere else.
|
feedback
|
|
It inspects the file system's modification date meta information. See, for instance, the stat() man page and the It has built-in rules that tells it that (for instance) a .o file needs to be re-generated if the corresponding .c file has changed; the manual section on rule syntax says:
| |||
|
feedback
|
|
It checks is to see if the date/time stamp on the source file is later than that on the corresponding intermediate file (or perhaps the output file - it's been a while since I dealt with make files). If it is then the file needs to be complied. This will then trigger the linking of the final executable. | |||
|
feedback
|
|
Anyway, to answer your question, the check So, the answer to "how does it know?" is:
You are right, | |||
|
feedback
|
|
Then it knows it needs to rebuild This means that | |||
|
feedback
|