Programmable real-time audio signal processing application
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

clean.sh 1014B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. rm -f $1/bin/kc.app/Contents/MacOS/kc
  8. rm -rf $1/src
  9. rm -rf $1/cm
  10. rm -rf $1/include
  11. rm -rf $1/lib
  12. rm -rf $1/bin
  13. rm -rf $1/.deps
  14. rm -f $1/config.h
  15. rm -f $1/config.log
  16. rm -f $1/config.status
  17. rm -f $1/Makefile
  18. rm -f $1/stamp-h1
  19. rm -f $1/libtool
  20. make -C $1 distclean
  21. }
  22. rm -f ../aclocal.m4
  23. rm -f ../config.h.in
  24. rm -f ../config.h.in~
  25. rm -f ../configure
  26. rm -f ../Makefile.in
  27. rm -f ../src/Makefile.in
  28. rm -rf ../autom4te.cache
  29. rm -rf ../build-aux
  30. rm -rf ../m4/.svn
  31. rm -f ../m4/libtool.m4
  32. rm -f ../m4/lt~obsolete.m4
  33. rm -f ../m4/ltoptions.m4
  34. rm -f ../m4/ltversion.m4
  35. rm -f ../m4/ltsugar.m4
  36. clean_dir linux/debug
  37. clean_dir linux/release
  38. clean_dir osx/debug
  39. clean_dir osx/release
  40. rm -rf osx/debug/a.out.dSYM
  41. #rm -rf ../octave/results
  42. # remove all of emacs backup files (files ending width '~')
  43. # find ../ -name "*~" -exec rm {} \;