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?
g++ -Mto 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