2012-10-30 07:28:18 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
curdir=`pwd`
|
|
|
|
|
|
|
|
cd ../../..
|
|
|
|
autoreconf --force --install
|
|
|
|
|
|
|
|
cd ${curdir}
|
|
|
|
|
|
|
|
../../../configure --prefix=${curdir} \
|
2015-04-09 21:19:30 +00:00
|
|
|
--enable-debug \
|
|
|
|
# --enable-sonicart \
|
2012-10-30 07:28:18 +00:00
|
|
|
CFLAGS="-g -Wall" \
|
|
|
|
CXXFLAGS="-g -Wall" \
|
|
|
|
CPPFLAGS= \
|
|
|
|
LDFLAGS= \
|
|
|
|
LIBS=
|
|
|
|
|
|
|
|
|
|
|
|
#make
|
2015-04-09 21:19:30 +00:00
|
|
|
#make install
|