On 09 January 2008 16:16, Russell King wrote:

> I did take out the extra line.  I get an error:
> 
> make: *** No rule to make target `(cd', needed by `all'.  Stop.
> 
> russ

  That suggests that you've not just deleted the blank line, but also joined
the two lines together, i.e. your makefile used to say

------------------------------------------
all:

        (cd src;$(MAKE))
------------------------------------------

and now it says

------------------------------------------
all:   (cd src;$(MAKE))
------------------------------------------

when what I was trying to suggest is that it should say

------------------------------------------
all:
        (cd src;$(MAKE))
------------------------------------------


    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....



_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to