clean.sh 412 B

1234567891011121314151617181920
  1. #!/usr/bin/env bash
  2. set -e
  3. #
  4. # Dist clean script for libopenmpt.
  5. #
  6. # This is meant to be run by the libopenmpt maintainers.
  7. #
  8. # WARNING: The script expects the be run from the root of an OpenMPT svn
  9. # checkout. It invests no effort in verifying this precondition.
  10. #
  11. # We want ccache
  12. export PATH="/usr/lib/ccache:$PATH"
  13. # Clean dist
  14. make NO_SDL=1 NO_SDL2=1 clean-dist
  15. # Clean
  16. make NO_SDL=1 NO_SDL2=1 clean