Re: Clean folders

2005-01-23 Thread Alexandre Duret-Lutz
>>> "Leonardo" == Leonardo Boiko <[EMAIL PROTECTED]> writes: [...] Leonardo> to be entirely removed in ``make clean''. I can't use CLEANFILES Leonardo> because it's a directory, and I can't use ``clean-local'' because it Leonardo> could conflict with a possible ``clean-local'' in the Makefile

Re: Clean folders

2005-01-20 Thread Ralf Wildenhues
* Leonardo Boiko wrote on Thu, Jan 20, 2005 at 04:21:10PM CET: > >clean-local: > > rm -rf .build > > I'm having a similar problem. I want to create a convenience .am file > with rules that many of our packages will use, to be included by > Makefile.am's. I'm already using neat tricks people

Re: Clean folders

2005-01-20 Thread Leonardo Boiko
clean-local: rm -rf .build I'm having a similar problem. I want to create a convenience .am file with rules that many of our packages will use, to be included by Makefile.am's. I'm already using neat tricks people talked about on earlier discussions, like AC_DEFINING variables to empty so

Re: Clean folders

2005-01-17 Thread Thomas Degris
Thanks, it works. Thomas Stepan Kasal wrote: Hi, On Mon, Jan 17, 2005 at 03:11:50PM +0100, Thomas Degris wrote: rm: can't remove `.build': Is a directory add the following rule: clean-local: rm -rf .build HTH, Stepan Kasal

Re: Clean folders

2005-01-17 Thread Stepan Kasal
Hi, On Mon, Jan 17, 2005 at 03:11:50PM +0100, Thomas Degris wrote: > rm: can't remove `.build': Is a directory add the following rule: clean-local: rm -rf .build HTH, Stepan Kasal

Clean folders

2005-01-17 Thread Thomas Degris
Hello, I would like to know how to clean folders. For example, I would like to clean the folder .build. If I put it in the CLEANFILES variable, then I get this kind of error: rm: can't remove `.build': Is a directory Any hint ? Thanks, Thomas