I have multiple make.exe on my computer. How can I specify which one I use to build my code?
Can I copy the one (make.exe) to the folder of my code , then run:
make -f Makefile * ?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you only plan on using one of your make.exe set the PATH environment variable so it points to the one you want to use.
If you plan on using different make.exe for different projects add a .BAT file to your project directory and use the full path to the make.exe in there
example bat file:
Use it like this: