Follow-up Comment #2, bug #107 (project make):
Just to point out this works fine if you tell make to ignore errors during
builds using "-include":
~$ cat /tmp/foo.mk
there: hi ; @echo there
a.mk: ; echo 'b.mk: ; echo "hi: ; @echo hi" > $$@' > $@
-include a.mk
-include b.mk
~$ ./src/make/make-rel/make -f /tmp/foo.mk
echo 'b.mk: ; echo "hi: ; @echo hi" > $@' > a.mk
echo "hi: ; @echo hi" > b.mk
hi
there
Not saying this is a perfect solution but it does work.
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?107>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
_______________________________________________
Bug-make mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-make