%% [EMAIL PROTECTED] writes: bg> If I need to have this details else where, not in the command bg> script. Is it possible?.
No. As someone else said, your only option is to do something like: ALL_PREREQS = a b c d include test.mk all: $(ALL_PREREQS) then in test.mk you can examine the value of ALL_PREREQS. -- ------------------------------------------------------------------------------- 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
