Re: Have `make distclean` also remove .i and .s files

2007-10-15 Thread Alexandre Julliard
Gerald Pfeifer [EMAIL PROTECTED] writes: After using GCC's -save-temps option to debug something, I noticed that `make distclean` fails to actually remove .i and .s files. This patch fixes it. I hope it's the right place to make this change? It would be, but I don't think we want make clean

Re: Have `make distclean` also remove .i and .s files

2007-10-15 Thread Michael Stefaniuc
Alexandre Julliard wrote: Gerald Pfeifer [EMAIL PROTECTED] writes: After using GCC's -save-temps option to debug something, I noticed that `make distclean` fails to actually remove .i and .s files. This patch fixes it. I hope it's the right place to make this change? It would be, but I

Re: Have `make distclean` also remove .i and .s files

2007-10-15 Thread Alexandre Julliard
Gerald Pfeifer [EMAIL PROTECTED] writes: The GNU Coding Conventions (make distclean is a GNU invention as far as I know) says the following: distclean: Delete all files in the current directory (or created by this makefile) that are created by configuring or building the program. If

Re: Have `make distclean` also remove .i and .s files

2007-10-15 Thread Gerald Pfeifer
On Mon, 15 Oct 2007, Alexandre Julliard wrote: After using GCC's -save-temps option to debug something, I noticed that `make distclean` fails to actually remove .i and .s files. It would be, but I don't think we want make clean to remove all possible output files from all possible tools. I