作为目标/依赖项的 Win32 路径
是否可以有一个包含 win32 路径名的目标/依赖的 GNU makefile? 我目前使用的是 GNU make 的 win32 3.81 版本,它似乎在驱动器盘符方面有困难。 例如:
C:\MyTarget.obj : c:\MySource.cpp
cl /c C:\MySource.cpp
上面的 makefile 片段将生成错误。 特别是:
*** multiple target patterns. Stop.
这个问题有解决办法吗?
谢谢!
Is it possible to have a GNU makefile with a target/dependent containing a win32 path name? I'm currently using the win32 3.81 version of GNU make, and it seems to have difficulties with drive letters. For example:
C:\MyTarget.obj : c:\MySource.cpp
cl /c C:\MySource.cpp
The above makefile snippet will generate errors. In particular, the folliwng:
*** multiple target patterns. Stop.
Is there a solution to this problem?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不。“\”被解释为转义行尾。 此外,您不应该在 Makefile 中使用绝对路径名,因为它使其特定于您的计算机。 为什么不使用相对 POSIX 路径?
No. The "\" is interpreted as escaping the end of the line. Besides, you should NEVER use an absolute path name in your Makefile, as it makes it specific to your machine. Why not use a relative POSIX path?
这有点离题,但您可能应该使用 CMake 而不是直接使用 gnumake 在 Windows 上构建项目。
It's a little offtopic, but you should probably use CMake instead of gnumake directly to build projects on Windows.