up vote 9 down vote favorite
8
share [g+] share [fb]

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?

link|improve this question

feedback

4 Answers

up vote 14 down vote accepted

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:

# Add .d to Make's recognized suffixes.
SUFFIXES += .d

#We don't need to clean up when we're making these targets
NODEPS:=clean tags svn
#Find all the C++ files in the src/ directory
SOURCES:=$(shell find src/ -name "*.cpp")
#These are the dependency files, which make will clean up after it creates them
DEPFILES:=$(patsubst %.cpp,%.d,$(SOURCES))

#Don't create dependencies when we're cleaning, for instance
ifeq (0, $(words $(findstring $(MAKECMDGOALS), $(NODEPS))))
    #Chances are, these files don't exist.  GMake will create them and
    #clean up automatically afterwards
    -include $(DEPFILES)
endif

#This is the rule for creating the dependency files
src/%.d: src/%.cpp
    $(CXX) $(CXXFLAGS) -MM -MT '$(patsubst src/%,obj/%,$(patsubst %.cpp,%.o,$<))' $< > $@

#This rule does the compilation
obj/%.o: src/%.cpp src/%.d src/%.h
    @$(MKDIR) $(dir $@)
$(CXX) $(CXXFLAGS) -o $@ -c $<

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.

link|improve this answer
1  
Don't fall into this trap if you have more than 100 files, because it's too slow the first time. In this case, you should use something that is invoked once, not once for each file. Makedepend might have this option. At work, we use a custom perl script. – Steve Hanov Mar 8 '09 at 12:57
Thanks, I'll keep that in mind. My current project has about a dozen files, so it doesn't have big overhead. Besides, the initial build takes more than 20 minutes, so I always run that, go get some coffee, and run incremental builds after that. – Nathan Fellman Apr 27 '09 at 11:21
feedback

The GNU C preprocessor cpp has an option, -MM, which produces a make-suitable set of dependencies based on inclusion patterns.

link|improve this answer
feedback

MakeDepend is probably what you need.

link|improve this answer
1  
MakeDepend is deprecated in favor of the dependency generation built into the compilers themselves, since there is/can be differences in the file depending upon how they process the preprocessor macros. (ie #ifdef G++ #include "gpp.h" #endif – Stefan Mai Nov 24 '08 at 9:59
feedback

The Digital Mars C/C++ compiler comes with a makedep tool.

link|improve this answer
what platforms is this available for? – Nathan Fellman May 24 '09 at 11:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.