Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Programmer's Notepad Make error?
I am trying to compile a program for the wii using Programmer's Notepad, but when I try to compile it, I get this:
> "make"
> Failed to create process: The system cannot find the file specified.
> Process Exit Code: 0
> Time Taken: 00:00
What am I doing wrong?
So, how do I specify the right file?
2 Answers
- Dr.Mr.EdLv 51 decade agoFavorite Answer
With no arguments, the "make" command will look for a file called "Makefile" or "makefile" or "something.mak". If it's not picking up the file correctly, you'll get that error. The easiest method may be to simply pass the filename to the make command as in "make -f mymakefile"