<div dir="ltr"><div><div>I read the BBv2 documentation and samples. I don't want to create my own generator, just to see "Hola" "Adios" as the output of this program:<br><br><div style="margin-left:40px"> rule myecho <br>{<br>��� _MSG on $(<) = $(MSG) ; <br>}<br>actions myecho bind _MSG<br>{<br>��� echo "MSG = $(_MSG)" ; <br>} <br><br>constant MSG : "hola" ; <br>make Hola : : @myecho ; <br><br>constant MSG : "adios" ; <br> make Adios : : @myecho ;� <br></div><br></div>Why I only see "adios" "adios" ? I guess it's because the variable inside the action is not evaluated until the action executes. But the rule myecho should be executed in the first pass, hence _MSG should contain "Hola" for target Hola, and "Adios" for target Adios. <br> <br>Am I missing anything? How can I pass a different message to a Make rule depending on the target? Can I avoid creating a generator?<br><br></div>Regards.<br></div>