libcm is a C development framework with an emphasis on audio signal processing applications.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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