From e08957fb1c3a7f7a003b061b74da16d531b28a9c Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Wed, 8 Dec 2021 19:19:22 +0300 Subject: [PATCH] Changed docs/Jamfile to generate docs in the library subdirectory. Supposedly, Boost.Atomic docs were generated in the root doc directory because they were built as part of the boostdoc target. The updated Jamfile uses boostrelease target instead, which will hopefully move the docs under libs/atomic/doc. Also removed unused css and images copying - we have neither in the docs. The logo image is not used in the docs, only in README.md. --- doc/Jamfile.v2 | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 1403ce2..a215354 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -18,19 +18,8 @@ boostbook standalone pdf:"boost.url.prefix=http://www.boost.org/doc/libs/release/libs/atomic/doc/html" ; -install css : [ glob $(BOOST_ROOT)/doc/src/*.css ] - : html ; -install images : [ glob $(BOOST_ROOT)/doc/src/images/*.png ] - : html/images ; -explicit css ; -explicit images ; - ############################################################################### -alias boostdoc - : atomic - : - : - : ; +alias boostdoc ; explicit boostdoc ; -alias boostrelease ; +alias boostrelease : standalone ; explicit boostrelease ;