%% Olivier Durand <[EMAIL PROTECTED]> writes:
od> I have two solution here: I can either use the include directive
od> or the MAKEFILES environment variable. The include directive
od> works fine but redefines the goal of my makefile to the first
od> target of the included file (if there
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