> Can you explain me why the del command can not be found?
del is part of cmd.exe, not a separate program. cmd /c del *.h will work. rm
*.h will probably work (if you have enough of cygwin installed to run make,
then you probably have rm).
> I have a problem with gmake.
This list is really f
Hello,
I have a problem with gmake.
My makefile contains the following:
--
clean:
del *.h
--
when i perform the command:
make clean
i get the error message:
make: del: command not found
make: *** [clean] Error 127
Can you expla