%% Caleb Epstein <[EMAIL PROTECTED]> writes:
ce> I'm having difficulty using "eval" with an example taken more
ce> or less verbatim from the GNU Make manual, section 8.8. I am
ce> using GNU make 3.80 on a GNU/Debian Linux box.
There's a typo in the manual:
ce> $(1): $$($(1)_OBJ) $$($(1)_LIBS:%=-l%)
^^^^
Here the "OBJ" should be "OBJS":
$(1): $$($(1)_OBJS) $$($(1)_LIBS:%=-l%)
^
--
-------------------------------------------------------------------------------
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://mail.gnu.org/mailman/listinfo/help-make