|
|
|
|
|
by toast0
656 days ago
|
|
> Although, one can probably write a Makefile such that it loops through each file, greps or otherwise obtains the `extends` and generates the Makefile rules that way. You can do it with grep and what nots, but it gets icky fast. Much better is to have the compilers output dependency information while they're compiling, and use that. The compilers have to know the actual dependencies, because they're opening them, and reasonable compilers have options to save it for you. |
|
It'd be moot after they've been compiled. You're saying compile to get the information to decide if you should compile.