cmtools is a collection of utilities for generating and processing machine readable musical scores based on MusicXML, MIDI and other data files.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build.sh 230B

1234567891011121314151617181920
  1. #!/bin/sh
  2. curdir=`pwd`
  3. cd ../../..
  4. autoreconf --force --install
  5. cd ${curdir}
  6. ../../../configure --prefix=${curdir} \
  7. --enable-debug \
  8. CFLAGS="-g -Wall" \
  9. CXXFLAGS="-g -Wall" \
  10. CPPFLAGS= \
  11. LDFLAGS= \
  12. LIBS=
  13. #make
  14. #make install