| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # Jamfile which builds all the tools.
- project
- :
- requirements
- <link>static
- <link-runtime>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>.
- ;
|