libcm is a C development framework with an emphasis on audio signal processing applications.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build.sh 207B

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