libcm is a C development framework with an emphasis on audio signal processing applications.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

clean.sh 616B

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 {} \;