%% "VSong" <[EMAIL PROTECTED]> writes: v> Doesn't 'include' just change directory and run 'make'?
No, definitely not. It works just like #include in C, etc.: the contents of the included makefile are "inserted" at that point during the read of the including makefile. No directory change takes place, no new version of make is invoked. If you want to do that you'll have to write a rule to do it. -- ------------------------------------------------------------------------------- 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
