cmtools is a collection of utilities for generating and processing machine readable musical scores based on MusicXML, MIDI and other data files.
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.

build.sh 593B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. curdir=`pwd`
  3. cd ../../..
  4. autoreconf --force --install
  5. cd ${curdir}
  6. # To Profile w/ gprof:
  7. # 1) Modify configure: ./configure --disable-shared CFLAGS="-pg"
  8. # 2) Run the program. ./foo
  9. # 3) Run gprof /libtool --mode=execute gprof ./foo
  10. # --enable-build_libcm - build libcm from local tree
  11. ../../../configure --prefix=${curdir} \
  12. --enable-debug \
  13. CFLAGS="-g -Wall" \
  14. CXXFLAGS="-g -Wall" \
  15. CPPFLAGS="-I/home/kevin/src/libcm/build/linux/debug/include " \
  16. LDFLAGS="-L/home/kevin/src/libcm/build/linux/debug/lib"
  17. LIBS=
  18. #make
  19. #make install