libcm is a C development framework with an emphasis on audio signal processing applications.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/bin/bash
  2. #
  3. # Run 'make distclean' to clean many of the temporary make files.
  4. # then use this script run from cm/build to clean the remaining files
  5. #
  6. function clean_dir {
  7. make -C $1 uninstall
  8. make -C $1 distclean
  9. rm -f $1/bin/kc.app/Contents/MacOS/kc
  10. rm -rf $1/include
  11. rm -rf $1/lib
  12. rm -rf $1/bin
  13. rm -rf $1/.deps
  14. }
  15. clean_dir linux/debug
  16. clean_dir linux/release
  17. clean_dir osx/debug
  18. clean_dir osx/release
  19. rm -rf osx/debug/a.out.dSYM
  20. #rm -rf ../octave/results
  21. # remove all of emacs backup files (files ending width '~')
  22. # find ../ -name "*~" -exec rm {} \;