libcm is a C development framework with an emphasis on audio signal processing applications.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. # delete everything created by 'autoreconf'.
  21. rm -rf ../build-aux
  22. rm -rf ../autom4te.cache
  23. rm -f ../config.h.in ../config.h.in~ ../configure ../libtool.m4
  24. rm -f ../Makefile.in ../aclocal.m4
  25. rm -f ../m4/libtool.m4 ../m4/ltoptions.m4 ../m4/ltsugar.m4 ../m4/ltversion.m4 ../m4/lt~obsolete.m4