Re: including makefiles...

2000-09-13 Thread Paul D. Smith
%% 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

Re: including makefiles...

2000-09-12 Thread Tim Magill
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