将 nmake 转换为 make

发布于 2024-07-21 04:28:10 字数 104 浏览 11 评论 0原文

市场上是否有一种工具可以获取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酷炫老祖宗 2024-07-28 04:28:10

我还没有看到任何可以自动将 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.

傲影 2024-07-28 04:28:10

我认为业界已经通过 Ant 和 Ant- 解决了您所遇到的挫败感相关技术。 (NAnt)

Ant 是:

  • 跨平台,
  • 不依赖于操作系统 shell 命令
  • 不再有空格问题

, ,既然您提到您正在使用 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:

  • cross-platform
  • not tied to OS shell commands
  • no more whitespace issues

Alternatively, since you mentioned you're using VisualStudio, you might consider migrating to Microsoft's MSBuild -- Microsoft's (relatively new) build engine for VisualStudio.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文