> Date: Sat, 11 Dec 2010 14:14:13 +0330 > From: ali hagigat <[email protected]> > > all: file1 ;@echo $far1 > file1: far1 = yuuuuu > file1: > @echo $far1 > @echo lllllll > > ar1 > lllllll > ar1 > ---------------------------------------------------- > Why the second rule does not print the value of far1?
Because $far1 is not a reference to a Make variable. Try $(far1) instead. _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
