20 lines
230 B
Bash
20 lines
230 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
curdir=`pwd`
|
||
|
|
||
|
cd ../../..
|
||
|
autoreconf --force --install
|
||
|
|
||
|
cd ${curdir}
|
||
|
|
||
|
../../../configure --prefix=${curdir} \
|
||
|
--enable-debug \
|
||
|
CFLAGS="-g -Wall" \
|
||
|
CXXFLAGS="-g -Wall" \
|
||
|
CPPFLAGS= \
|
||
|
LDFLAGS= \
|
||
|
LIBS=
|
||
|
|
||
|
|
||
|
#make
|
||
|
#make install
|