1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-04-10 19:20:44 +01:00

build script update

This commit is contained in:
Antonin Portelli 2015-02-13 15:26:36 +00:00
parent cbb67c992f
commit 2ff01209f9

View File

@ -6,7 +6,7 @@ PREFIX=`cat Makefile | grep '^prefix =' | awk '{print $3}'`
case $1 in case $1 in
'') '')
echo '-- building...' echo '-- building...'
make -j5 make -j8
echo '-- installing...' echo '-- installing...'
make uninstall 1>/dev/null make uninstall 1>/dev/null
make install 1>/dev/null make install 1>/dev/null
@ -17,7 +17,7 @@ case $1 in
fi;; fi;;
'clean') 'clean')
echo '-- cleaning...' echo '-- cleaning...'
make -j5 clean;; make -j8 clean;;
*) *)
echo 'error: unknown action' 1>&2 echo 'error: unknown action' 1>&2
exit 1;; exit 1;;