Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-05-31 19:26:27 -0700 (Tue, 31 May 2005)
Revision: 1065
Log message:
Added a "static" section.
The idea here is that any object can have static values that are
persistent across OMake runs.
static. =
foo = $(println Hello World)
This will print Hello World just once the first time this code
is evaluated. Subsequent OMake runs will not re-evaluate foo.
NOTE: this is the basic support, but it isn't working yet.