Programmable real-time audio signal processing application
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.sh 262B

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