1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/build.sh

25 lines
590 B
Bash
Executable File

#!/bin/bash
set -e
PREFIX=`cat Makefile | grep '^prefix =' | awk '{print $3}'`
case $1 in
'')
echo '-- building...'
make -j5
echo '-- installing...'
make uninstall 1>/dev/null
make install 1>/dev/null
if [[ `basename \`pwd\`` == "latan" ]]
then
echo '-- creating debug symbols...'
dsymutil .libs/liblatan.0.dylib -o ${PREFIX}/lib/liblatan.0.dylib.dSYM
fi;;
'clean')
echo '-- cleaning...'
make -j5 clean;;
*)
echo 'error: unknown action' 1>&2
exit 1;;
esac