26 lines
593 B
Bash
Executable File
26 lines
593 B
Bash
Executable File
#!/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
|
|
|
|
# --enable-build_libcm - build libcm from local tree
|
|
|
|
../../../configure --prefix=${curdir} \
|
|
--enable-debug \
|
|
CFLAGS="-g -Wall" \
|
|
CXXFLAGS="-g -Wall" \
|
|
CPPFLAGS="-I/home/kevin/src/libcm/build/linux/debug/include " \
|
|
LDFLAGS="-L/home/kevin/src/libcm/build/linux/debug/lib"
|
|
LIBS=
|
|
#make
|
|
#make install
|