%% Lin George <[EMAIL PROTECTED]> writes: >> info is a GNU make function (introduced in GNU make 3.81). >> You can look it up in the GNU make manual. lg> a=abc lg> all: lg> $(info $(a))
You don't have to put this into a rule, if you don't want to. lg> when I use make in Linux, the output is, lg> make: 'all' is up to date. I said: lg> info is a GNU make function (introduced in GNU make 3.81). Most likely you are using an older version of GNU make. Use "make --version" to see what version you're using. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
