1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-23 09:12:03 +01:00

big refactoring for cleaner code conventions

This commit is contained in:
2014-01-22 16:57:47 +01:00
parent 967f1da061
commit 278bc59a33
25 changed files with 663 additions and 635 deletions

View File

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