1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-19 21:25:36 +01:00
LatAnalyze/build.sh

25 lines
605 B
Bash
Raw Normal View History

2013-05-01 14:35:30 +01:00
#!/bin/bash
2014-03-12 19:54:27 +00:00
set -e
2013-05-01 14:35:30 +01:00
PREFIX=`cat Makefile | grep '^prefix =' | awk '{print $3}'`
case $1 in
'')
echo '-- building...'
2015-02-13 15:26:36 +00:00
make -j8
2013-05-01 14:35:30 +01:00
echo '-- installing...'
make uninstall 1>/dev/null
2015-06-11 14:03:41 +01:00
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;;
2013-05-01 14:35:30 +01:00
'clean')
echo '-- cleaning...'
2015-02-13 15:26:36 +00:00
make -j8 clean;;
2013-05-01 14:35:30 +01:00
*)
echo 'error: unknown action' 1>&2
exit 1;;
esac