Topic: What is 'rm'?
When I clean my current project, I've been getting this error message at the end of the clean narrative, for about the last couple of weeks. It seems not to matter because CLEAN seems still to be successful, but I'd like to get rid of it if I could find out how to do so.
:
:
:
Deleting .\build64\WinINIT.o and related files
Deleting .\build64\WinMenus.o and related files
Deleting .\build64\WinSCR.o and related files
Deleting default icon resource
Deleting Instruct(64bit).SF.exe
'rm' is not recognized as an internal or external command,
operable program or batch file.
Error(E42): Last command making (clean) returned a bad status
Error(E02): Make execution terminated
* Failed *
In case it's relevant, I've also noticed that my Makefile begins like this:
#
# Automagically generated by Approximatrix Simply Fortran 2.16
#
FC="C:\Program Files (x86)\Fortran\SF2\mingw-w64\bin\gfortran.exe"
CC="C:\Program Files (x86)\Fortran\SF2\mingw-w64\bin\gcc.exe"
AR="C:\Program Files (x86)\Fortran\SF2\mingw-w64\bin\ar.exe"
WRC="C:\PROGRA~2\Fortran\SF2\MINGW-~1\bin\windres.exe"
RM=rm -f
:
:
:
:
----
John