Jamfile.v2 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Copyright 2005 Rene Rivera
  2. # Copyright 2005 Hartmut Kaiser
  3. # Copyright 2005 John Maddock
  4. # Copyright 2003 Vladimir Prus
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  7. # Jamfile which builds all the tools.
  8. project
  9. :
  10. requirements
  11. <link>static
  12. ;
  13. use-project /boost/regression : regression/build ;
  14. TOOLS =
  15. bcp//bcp
  16. inspect/build//inspect
  17. quickbook//quickbook
  18. /boost/regression//compiler_status
  19. /boost/regression//library_status
  20. /boost/regression//process_jam_log
  21. wave/build//wave
  22. ;
  23. install dist-bin
  24. :
  25. $(TOOLS)
  26. :
  27. <install-type>EXE
  28. <location>../dist/bin
  29. :
  30. release
  31. ;
  32. install dist-lib
  33. :
  34. $(TOOLS)
  35. :
  36. <install-type>LIB
  37. <location>../dist/lib
  38. :
  39. release
  40. ;
  41. local patterns = *.dtd *.xml *.xsl LICENSE ;
  42. local dirs = boostbook/dtd boostbook/xsl ;
  43. install dist-share-boostbook
  44. :
  45. [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
  46. :
  47. <location>../dist/share
  48. <install-source-root>.
  49. ;
粤ICP备19079148号