diff --git a/vw/Jamfile b/vw/Jamfile index 2e8547ae0..0eda14c9a 100644 --- a/vw/Jamfile +++ b/vw/Jamfile @@ -6,11 +6,11 @@ boost 103600 ; # VW local with-vw = [ option.get "with-vw" ] ; if $(with-vw) { - lib vw : : $(with-vw)/vowpalwabbit ; - lib allreduce : : $(with-vw)/vowpalwabbit ; + lib vw : : $(with-vw)/lib ; + lib allreduce : : $(with-vw)/lib ; - obj ClassifierFactory.o : ClassifierFactory.cpp headers : $(with-vw)/vowpalwabbit ; - obj VWPredictor.o : VWPredictor.cpp headers : $(with-vw)/vowpalwabbit ; + obj ClassifierFactory.o : ClassifierFactory.cpp headers : $(with-vw)/include/vowpalwabbit ; + obj VWPredictor.o : VWPredictor.cpp headers : $(with-vw)/include/vowpalwabbit ; alias vw_objects : VWPredictor.o ClassifierFactory.o vw allreduce : : : boost_program_options ; lib classifier : [ glob *.cpp : VWPredictor.cpp ClassifierFactory.cpp ] vw_objects headers ;