How do I create a makefile from a Visual Studio solution file?

Posted by Alex319 on Stack Overflow See other posts from Stack Overflow or by Alex319
Published on 2010-05-15T06:56:16Z Indexed on 2010/05/15 7:04 UTC
Read the original article Hit count: 144

Filed under:
|

I have a Visual Studio project that uses a solution file to build it. I want to generate a makefile so that I can build it using the makefile instead of the solution file. (The reason I need to do this in case you are wondering is that I am incorporating my project into a larger software system that uses makefiles to build, and I want to be able to build the whole thing using the makefiles.)

Is there a way to automatically get the information from the Visual Studio solution and convert it into a makefile format, or do I need to do that manually?

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about makefile