On Sun, 2008-11-30 at 17:51 -0700, Davidson, Josh wrote: > Is it valid to treat VPATH like a simply expanded variable? I changed > my makefiles to add to it like: > > VPATH := $(VPATH) SRCIDR_$(d) TESTDIR_$(d)
Yes, this is perfectly legitimate. VPATH is just a variable like any other variable. The only difference is how/where make uses its value. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.us "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
