Mailing List Archive

Make clean does ./configure before making clean
Small oddity in today's CVS. Tried to do a "make clean" and a "./configure"
was executed, followed by a make clean:

[root@asbestos ntop]# make clean
cd . && aclocal
cd . && automake --gnu Makefile
cd . && autoconf
/bin/sh ./config.status --recheck
running /bin/sh ./configure --no-create --no-recursion

Welcome to ntop, Version 2.0.0
Copyright (c) 1998-2001 Luca Deri <deri@ntop.org>

loading cache ./config.cache

....
does whole configure routine
....

Now type 'make' or 'gmake' (GNU make) on *BSD and Solaris
systems to build ntop 2.0.0.

=================================================

If you like ntop, please do not forget to support
its development. See SUPPORT_NTOP.txt for more
information. Thanks for supporting ntop!

=================================================

cd . \
&& CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
Making clean in intop

....
now does make clean
....

I assume that this isn't intentional.

Joel T. Osburn