libcm is a C development framework with an emphasis on audio signal processing applications.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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