# This Jamfile is the same as Jamfile2, except that # it tries to access prebuilt targets using absolute # paths. It used to be broken on Windows. import modules ; LIBNAME = [ modules.peek : LIBNAME ] ; project ext ; # Assumed bjam was invoked from the project root local pwd = [ PWD ] ; lib a : : $(pwd)/ext/debug/$(LIBNAME:E=LIBNAME-not-defined) debug : : debug ; lib a : : $(pwd)/ext/release/$(LIBNAME:E=LIBNAME-not-defined) release : : release ;