Jamfile.v2 772 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Jamfile which builds all the tools.
  2. project
  3. :
  4. requirements
  5. <link>static
  6. ;
  7. TOOLS =
  8. bcp//bcp
  9. inspect/build//inspect
  10. quickbook//quickbook
  11. regression/build//compiler_status
  12. regression/build//process_jam_log
  13. wave/build//wave
  14. ;
  15. install dist-bin
  16. :
  17. $(TOOLS)
  18. :
  19. <install-type>EXE
  20. <location>../dist/bin
  21. :
  22. release
  23. ;
  24. install dist-lib
  25. :
  26. $(TOOLS)
  27. :
  28. <install-type>LIB
  29. <location>../dist/lib
  30. :
  31. release
  32. ;
  33. local patterns = *.dtd *.xml *.xsl LICENSE ;
  34. local dirs = boostbook/dtd boostbook/xsl ;
  35. install dist-share-boostbook
  36. :
  37. [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
  38. :
  39. <location>../dist/share
  40. <install-source-root>.
  41. ;
粤ICP备19079148号