Jamfile 655 B

1234567891011121314151617181920
  1. #==============================================================================
  2. # Copyright (c) 2010 Gevorg Voskanyan
  3. # Copyright (c) 2001-2010 Joel de Guzman
  4. # Copyright (c) 2001-2010 Hartmut Kaiser
  5. #
  6. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  7. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. #==============================================================================
  9. # build all examples
  10. local examples = [ glob-tree [jJ]amfile [jJ]amfile.v2 ] ;
  11. for local ex in $(examples) {
  12. local dir = $(ex:P) ;
  13. if $(dir) != "" && $(dir) != "." {
  14. build-project $(dir) ;
  15. }
  16. }