libcm is a C development framework with an emphasis on audio signal processing applications.
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 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