25 lines
376 B
Bash
25 lines
376 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
curdir=`pwd`
|
||
|
|
||
|
cd ../../..
|
||
|
autoreconf --force --install
|
||
|
|
||
|
cd ${curdir}
|
||
|
|
||
|
# To Profile w/ gprof:
|
||
|
# 1) Modify configure: ./configure --disable-shared CFLAGS="-pg"
|
||
|
# 2) Run the program. ./foo
|
||
|
# 3) Run gprof /libtool --mode=execute gprof ./foo
|
||
|
|
||
|
../../../configure --prefix=${curdir} \
|
||
|
CFLAGS="-Wall" \
|
||
|
CXXFLAGS="-Wall" \
|
||
|
CPPFLAGS= \
|
||
|
LDFLAGS= \
|
||
|
LIBS=
|
||
|
|
||
|
|
||
|
#make
|
||
|
#make install
|