mirror of
https://github.com/boostorg/boost.git
synced 2025-04-21 04:28:49 +00:00
49 lines
819 B
Text
49 lines
819 B
Text
|
|
# Jamfile which builds all the tools.
|
|
|
|
project
|
|
:
|
|
requirements
|
|
<link>static
|
|
<runtime-link>static
|
|
<threading>single
|
|
;
|
|
|
|
TOOLS =
|
|
bcp//bcp
|
|
inspect/build//inspect
|
|
quickbook//quickbook
|
|
regression/build//compiler_status
|
|
regression/build//process_jam_log
|
|
wave/build//wave
|
|
;
|
|
|
|
install dist-bin
|
|
:
|
|
$(TOOLS)
|
|
:
|
|
<install-type>EXE
|
|
<location>../dist/bin
|
|
:
|
|
release
|
|
;
|
|
|
|
install dist-lib
|
|
:
|
|
$(TOOLS)
|
|
:
|
|
<install-type>LIB
|
|
<location>../dist/lib
|
|
:
|
|
release
|
|
;
|
|
|
|
local patterns = *.dtd *.xml *.xsl LICENSE ;
|
|
local dirs = boostbook/dtd boostbook/xsl ;
|
|
install dist-share-boostbook
|
|
:
|
|
[ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
|
|
:
|
|
<location>../dist/share
|
|
<install-source-root>.
|
|
;
|