run.sh 294 B

123456789101112131415161718
  1. #! /bin/bash
  2. # make a copy of a waf directory with the same name
  3. #
  4. # the tool 'relocation' (waflib/extras) adds some information
  5. # so that a full rebuild is not performed when the dir changes
  6. rm -rf tmp
  7. mkdir tmp
  8. pushd c
  9. waf configure build
  10. popd
  11. cp -R c tmp/c
  12. cd tmp/c
  13. waf configure build