Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently using a manually designed Makefile for my project and I have never used Makefile generators before. Note that I currently have more than 70 source files (C++, Python and MATLAB combined). The Makefile is mainly used to compile C++ files and the protocol buffers (.proto). I know my project is growing to have more and more files. They are currently all in one director. But I may need to have multiple directories. My fear is that maintaining a Makefile becomes harder and harder.

I used to see automake/autoconf before and I am seeing CMake more and more. What are the options? Are they designed large projects? Which one is preferred? What are pros and cons of each? What are the other good options?

I do see that automake is not listed in any good tool for makefile generation?. Is it outdated?

share|improve this question
3  
Please also tell us what you need. – Mark Garcia Jan 29 at 2:37
How big is your project, and how portable does it need to be? Using g++ -M to generate dependencies can be quite useful, and if you don't have a huge number of files in the project, it's probably easier to use a manually made [or simple script/batchfile] than it is to learn and debug CMake or automake scripts. – Mats Petersson Jan 29 at 2:39
Before anyone can reasonably answer this, it would help to know what you are hoping to accomplish and what doesn't work with plan makefiles today. Are you trying to compile for multiple targets? Or is your build environment sufficiently complex such that the existing Makefile is getting out of hand to maintain? – selbie Jan 29 at 2:39
@MarkGarcia: I just updated the question. – Mohammad Moghimi Jan 29 at 2:50
Thanks and well done. Presenting your requirements and current constraints would pretty much narrow the answers to what you really need. – Mark Garcia Jan 29 at 2:51
show 3 more comments

1 Answer

up vote 5 down vote accepted

The 1st coming to mind are

What will fit better might depend on your particular needs. CMake covers a broad bunch of features from auto-building installable packages to unit tests, and is much more easier to understand than autoconf tools IMHO.

For really 'large' projects, that need integration of 3rd party stuff, generation of intermediate sources, etc. I'm actually using ant + CMake to steer the C++ compilation parts. This also integrates well with contiguous integration servers like Jenkins.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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