%% "Antonio Norkus" <[EMAIL PROTECTED]> writes:

  an> I'm using GNU make 3.74 on a HP 715/50 with HPUX 10.20 and have
  an> encountered a problem with target-specific variable.

Target-specific variables are not supported in GNU make 3.74.  Get a
newer version.  The latest is 3.79.1.

  an> variable:=STRING="A target-specific variable has been set"

This is not the right syntax for target-specific variables in GNU make.
The ":=" operator means something entirely different in GNU make.

You should use this:

  variable : STRING = a target-specific variable has been set

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://www.paulandlesley.org/gmake/
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to