Jamfile.v2 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. TOOLS =
  14. bcp//bcp
  15. inspect/build//inspect
  16. quickbook//quickbook
  17. regression/build//compiler_status
  18. regression/build//process_jam_log
  19. wave/build//wave
  20. ;
  21. install dist-bin
  22. :
  23. $(TOOLS)
  24. :
  25. <install-type>EXE
  26. <location>../dist/bin
  27. :
  28. release
  29. ;
  30. install dist-lib
  31. :
  32. $(TOOLS)
  33. :
  34. <install-type>LIB
  35. <location>../dist/lib
  36. :
  37. release
  38. ;
  39. local patterns = *.dtd *.xml *.xsl LICENSE ;
  40. local dirs = boostbook/dtd boostbook/xsl ;
  41. install dist-share-boostbook
  42. :
  43. [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
  44. :
  45. <location>../dist/share
  46. <install-source-root>.
  47. ;
粤ICP备19079148号