Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

any good tool for makefile generation? [closed]

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).

like image 880
Serge Avatar asked Aug 13 '08 08:08

Serge


Video Answer


1 Answers

Other suggestions you may want to consider:

  • Scons is a cross-platform, cross-compiler build library, uses Python scruipting for the build systems. Used in a variety of large projects, and performs very well.

  • If you're using Qt, QMake is a nice build system too.

  • CMake is also pretty sweet.

  • Finally, If all else fails...

like image 64
Thomi Avatar answered Sep 28 '22 01:09

Thomi