# GNUmakefile FOO := blah include GNU$(FOO).mk include GNU$(BAR).mk
in which GNUblah.mk defines BAR. This produces the following error:
GNUmakefile:4: GNU.mk: No such file or directory gmake: *** No rule to make target `GNU.mk'. Stop.
presumably because at the time the makefile is parsed, BAR is not yet defined. Is there a way to do what I want?
Thanks, Noel
_______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
