Hello,
I am having a problem with such a rule:
all: prj-Main
prj-%: $(shell cat -s %/Makefile.dep)
$(MAKE) -C $*
make (a win32 build of v3.80) says:
/usr/bin/cat: %/Makefile.dep: No such file or directory
:(
I expected that it shall be expanded to the following:
prj-Main: $(shell cat -s Main/Makefile.dep)
$(MAKE) -C $*
Is there a way to do what I want?
--
Kind regards,
Evgeny
_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make