cmtools is a collection of utilities for generating and processing machine readable musical scores based on MusicXML, MIDI and other data files.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213141516171819202122232425262728293031323334353637
  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. }
  11. clean_dir linux/debug
  12. clean_dir linux/release
  13. clean_dir osx/debug
  14. clean_dir osx/release
  15. rm -rf osx/debug/a.out.dSYM
  16. # delete everything created by 'autoreconf'.
  17. rm -rf ../build-aux
  18. rm -rf ../autom4te.cache
  19. rm -f ../config.h.in ../config.h.in~ ../configure ../libtool.m4
  20. rm -f ../Makefile.in ../aclocal.m4
  21. rm -f ../m4/libtool.m4 ../m4/ltoptions.m4 ../m4/ltsugar.m4 ../m4/ltversion.m4 ../m4/lt~obsolete.m4