将 nmake 转换为 make
市场上是否有一种工具可以获取 Visual Studio“nmake”文件,并将其转换为 Unix 风格的“make”文件? 有没有什么工具可以减轻在大型项目中管理 makefile 的痛苦?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有看到任何可以自动将 nmake 转换为 unix make 的工具,但是有几种工具可以帮助管理大型项目中的 makefile。 我最喜欢的是 CMake。
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.
我认为业界已经通过 Ant 和 Ant- 解决了您所遇到的挫败感相关技术。 (NAnt)
Ant 是:
, ,既然您提到您正在使用 VisualStudio,您可能会考虑迁移到 Microsoft 的 MSBuild - Microsoft(相对较新)的 VisualStudio 构建引擎。
I think the frustrations you're experiencing have been addressed by the industry via the Ant and Ant-related technologies. (NAnt)
Ant is:
Alternatively, since you mentioned you're using VisualStudio, you might consider migrating to Microsoft's MSBuild -- Microsoft's (relatively new) build engine for VisualStudio.