Nmake - 编译所有子文件夹中的所有源文件
我想创建一个通用的 nmake 文件,只需对 .mak 文件进行最少的更改即可用于多个项目。我希望它编译一个文件夹中的所有源文件(c/cpp)以及所有子文件夹中的所有源文件。我不确定是否可以使用通配符作为目录名称或如何迭代遍历多个目录级别。使用 nmake 可以吗?
I want to create a generic nmake file that can be used for multiple projects with minimal changes to the .mak file. I want it to compile all of the source files (c/cpp) in a folder as well as all of the source files in all subfolders. I'm not sure if it's possible to use wildcards for directory names or how I would iteratively traverse multiple directory levels. Is this possible using nmake?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你最好尝试 makecc、CMake 或类似的东西。
You'd better try makecc, CMake or something similar.