views:

63

answers:

2

Hi,

I have a makefile project with makefiles generated by Eclipse CDT (Helios, MinGW). The "clean" command does not work because the "del" command is executed with arguments like ./src/myfile.o, but on Windows this doesn't work (should be .\src\myfile.o).

How can I either tell Eclipse to use the Windows Path Separator or otherwise maybe replace the command "del" by something different (I could easily write a batch script which replaces the forward-slashes by backslashes)?

Thanks for any hints!

A: 

Edit the makefiles to use the mingw rm command instead?

crazyscot
is this possible? Please note that the makefiles are generated automatically by Eclipse.
Philipp
OK, my bad. When you spoke of makefiles I thought you were talking about a CDT _Makefile_ project. You could always switch to one of those and write the makefiles yourself?
crazyscot