From c06add0b1d365e3bdcbce08e70ac266489111dff Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Apr 2024 22:51:03 -0500 Subject: [PATCH] Build the dist target for tools by default. --- Jamfile.v2 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Jamfile.v2 b/Jamfile.v2 index 61b1379..3de6fd6 100644 --- a/Jamfile.v2 +++ b/Jamfile.v2 @@ -12,8 +12,7 @@ DIST_DIR ?= [ path.join $(BOOST_ROOT) dist ] ; DIST_DIR ?= dist ; DIST_DIR = [ path.root [ path.make $(DIST_DIR) ] [ path.pwd ] ] ; -project /boost/bcp - ; +project /boost/bcp ; explicit [ exe bcp @@ -29,6 +28,8 @@ explicit : bcp/static : EXE $(DIST_DIR)/bin : release ] - [ alias dist : dist-bin ] - [ alias all : bcp test dist ] + [ alias all : bcp test dist-bin ] ; + +# Install distribution files/execs by default. +alias dist : dist-bin ;