Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting nmake to make

Is there a tool in the market that takes Visual Studio "nmake" files, and converts them to Unix-style "make" files? Is there any tool that eases the pain of managing makefiles in large projects?

like image 620
user63898 Avatar asked Sep 13 '25 10:09

user63898


1 Answers

I haven't seen any tools which automatically can convert nmake to unix make, but there are several tools to aid in managing makefiles in large projects. My favorite one is CMake.

like image 179
JesperE Avatar answered Sep 17 '25 20:09

JesperE