This is not a bug. make uses whatever target comes first as the
default target. Try:
# force my default target
all : $(whatever)
# now do includes
include makefiles
# now do local rules
...
tim
PS: you might want to upgrade your version of make. It won't change
this (correct) behavior, b
On Wed, Mar 22, 2000 at 01:43:56PM +1100, Chris Rankin wrote:
> Hi,
>
> We are seeing the following problem with GNU make versions 3.77 and 3.78.1 (Makefile
>below):
>
> $ make bug.o
> gcc-c -o bug.o bug.c
> rm bug.o
>
> In other words, although we are *explicitly* requesting that this fil