20 Zeilen
230 B
Bash
Ausführbare Datei
20 Zeilen
230 B
Bash
Ausführbare Datei
#!/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 |