mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 00:32:11 +00:00
19 lines
724 B
Plaintext
19 lines
724 B
Plaintext
# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and
|
|
# distribute this software is granted provided this copyright notice appears in
|
|
# all copies. This software is provided "as is" without express or implied
|
|
# warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
# Bootstrap the module system
|
|
SEARCH on <module@>modules.jam = $(BOOST_BUILD_PATH) ;
|
|
module modules { include <module@>modules.jam ; }
|
|
# Bring the import rule into the global module
|
|
IMPORT modules : import : : import ;
|
|
import modules ; # The modules module can tolerate being included twice
|
|
|
|
# Load the doc system.
|
|
import doc : document-module document-rule document-variable ;
|
|
|
|
import build-system ;
|
|
|
|
doc.do-help ;
|