Re: Section 3.8 of the info manual not respected

2009-05-26 Thread Philip Guenther
On Tue, May 26, 2009 at 9:45 AM, Anthony Shipman wrote: > I've tried the example in section 3.8 Overriding Part of Another Makefile. > i.e. > > foo: >        frobnicate > foo > > %: force >       �...@$(MAKE) -f Makefile $@ > > force: ; > > The command 'make foo' results in > > make[1]: Makefile:

Section 3.8 of the info manual not respected

2009-05-26 Thread Anthony Shipman
I've tried the example in section 3.8 Overriding Part of Another Makefile. i.e. foo: frobnicate > foo %: force @$(MAKE) -f Makefile $@ force: ; The command 'make foo' results in make[1]: Makefile: No such file or directory make[1]: *** No rule to make target `Makefile'.