>>> "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
* 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
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
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
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
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