I have a project that has a makefile with broken dependencies. Is there any best known way to generate a list of dependencies for the project that I can use in the makefile, other than examining each source file by hand or with a hand written perl script?
|
feedback
|
|
http://make.paulandlesley.org/autodep.html has a good solution. Absolutely. g++ -MM will generate a GMake compatible list of dependencies. I use something like this:
What this will do is automatically generate the dependencies for each file that has changed, and compile them according to whatever rules you have in place. This allows me to just dump new files into the src/ directory, and have them compiled in automatically dependencies and all. | |||||||
feedback
|
|
The GNU C preprocessor cpp has an option, -MM, which produces a make-suitable set of dependencies based on inclusion patterns. | ||||
|
feedback
|
|
MakeDepend is probably what you need. | |||||
feedback
|
|
The Digital Mars C/C++ compiler comes with a makedep tool. | |||
|
feedback
|