Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的电脑上有多个 make.exe。如何指定我使用哪一个来构建我的代码?我可以将一个(make.exe)复制到我的代码文件夹中,然后运行: make -f Makefile *吗?
谢谢。
如果您只打算使用 make.exe 之一,请设置 PATH 环境变量,使其指向您要使用的那个。
如果您计划为不同的项目使用不同的 make.exe,请将 .BAT 文件添加到您的项目目录中,并在其中使用 make.exe 的完整路径
示例 bat 文件:
@echo off c:\somepath\somewhere\make.exe %*
像这样使用它: