Also the titles are not capitalized and the makefile is tabbed.
I've tried different approaches so let me break them down:
1) Using plain old make gave me this error: mingw32-make: *** No targets specified and no makefile found. Stop.
2) Using make makefile.mak gave me this error: mingw32-make: Nothing to be done for 'makefile.mak'.
3) Using make "F:\Text Editor Programs\C++\Test\makefile.mak" at first worked before I reinstalled but now proudly gives me this error: mingw32-make: Nothing to be done for 'F:\Text Editor Programs\C++\Test\makefile.mak'
Also note that I did change the cpp file before trying to make so it is not that the program indeed has 'nothing to be done for'.
Remember that you need a tab in front of any commands you want the makefile to run. And the name should just be makefile if you want simple make to work (no extensions).
As stated I did put a tabs in the actual makefile but what do you mean that the makefile should have no extensions? do you mean there shouldn't be a .mak at the end of the file name?
Seems like the problem is that mingw doesn't support rm command. It works with del for some reason but not rm. If anyone could give me an explanation on this that would be great.
Sorry for bringing back a dead post but thank you Peter. It seems the makefile tutorial I was looking at was a unix tutorial and for some reason I thought rm was rd.