Hi. I'm looking for a tool which can generate makefile for a C/C++ project for different compilers (gcc, microsoft vc++, borland etc) and different platforms (Win, Linux, Mac).
|
4
|
|
|
|
|
|
Other suggestions you may want to consider:
Cheers, |
||
|
|
|
|
I would vote for OMake. It fixes all complains I had with GNU make:
|
||
|
|
|
|
CMake is the only tool which can actually generate real Visual Studio projects (i.e. not "Makefile"-projects which call out to an external tool), and which automatically recreates the projects when the build input file (CMakeLists.txt) changes. SCons performance issues are well-known and a thorougly debated topic on the SCons mailing lists. |
||
|
|
|
|
G'day, Automatic generation of (M|m)akefiles makes me worry about what you're trying to do here. Do you understand what goes on under the covers when you type make? Or gmake? I'm only asking because if you don't when things break, such as new code changes not being incorporated into the build, you'll have difficulties trying to work what has happened. To start to understand make, can I suggest having a read of "Managing Projects with GNU Make" by Robert Mecklenberg. The early chapters cover how make is working. Getting your heard around the fact that make is backward chaining is one of the biggest things you can do. If you don't, and your system appears to work, then you'll be, to use The Pragmatic Programmers' term, "programming by coincidence". (-: BTW Great articles available at their site! And I'm not involved with them. YMMV. Yada-yada... cheers, Rob |
||
|
|
|
|
I've used Bakefile before with some success. It's fairly simple and seems to work well. |
||
|
|
|
|
One issue to consider is do you want a "makefile" creator or a replacement build system? The problem with replacement build systems is that you typically don't get good IDE integration for platforms whose users expect this (Visual C++). If you do want a makefile creator instead of a replacement build system, take a look at MPC. It's free and open source. |
||
|
|
|
|
I'll also second CMake. I've been using it for quite a while on a multi-platform project and I'm very satisfied with it. |
||
|
|
|
|
Thanks, CMake looks great! I will give a try.. |
||
|
|
|
|
Thanks, I will. Meanwhile I found cmake. It seems good to me though I don't know whether it allows to specify preprocessor definitions for the specific target. |
||
|
|
|
Have you tried Automatic Makefile Generator? It supports for the following compilers:
|
|||
|
|
