I've found this question which is basically asking the same, but got no real answer.
Where is the make
's config file / database file where it remembers the file timestamps, so it can tell what changed? I checked and there's no .make
or similar in my project, nor in the home directory.
Or does it somehow store the information inside the files themselves, perhaps by modifying the timestamps? (That sounds fishy though)
There is no such "database". The program simply compare the filesystems modification and creation timestamps of source and target files.
Lets say you have the following rule:
Then if the modified timestamp of either
some_source_1
orsome_source_2
is later than the modification/creation time ofsome_target
then the rule will activate and the target will be rebuilt.