mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
25 lines
598 B
Bash
Executable File
25 lines
598 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
PREFIX=`cat Makefile | grep '^prefix =' | awk '{print $3}'`
|
|
case $1 in
|
|
'')
|
|
echo '-- building...'
|
|
make -j8
|
|
echo '-- installing...'
|
|
make uninstall 1>/dev/null
|
|
make install 1>/dev/null
|
|
if [[ `basename \`pwd\`` == "lib" ]]
|
|
then
|
|
echo '-- creating debug symbols...'
|
|
dsymutil .libs/libLatAnalyze.0.dylib -o ${PREFIX}/lib/libLatAnalyze.0.dylib.dSYM
|
|
fi;;
|
|
'clean')
|
|
echo '-- cleaning...'
|
|
make -j8 clean;;
|
|
*)
|
|
echo 'error: unknown action' 1>&2
|
|
exit 1;;
|
|
esac
|