Hi all,

Can anyone explain why make claims that foo cannot be built with this
Makefile please? Looking at the "Implicit Rule Search Algorithm" in the
info page it looks to me like it should work fine.

##############################
default: foo
        @echo default

f%: bar
        @echo This is $@ with $*

z%:
        @echo This is $@ with $*

%: zzz
        @echo This is the general rule for $@
##############################


Thanks
Ian

default: foo
        @echo default

f%: bar
        @echo This is $@ with $*

z%:
        @echo This is $@ with $*

%: zzz
        @echo This is the general rule for $@

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

Reply via email to