Merge branch 'KLU-6+11-rebase-master-5_Mag_2023' of ssh://git.code.sf.net/p/ngspice/ngspice into KLU-6+11-rebase-master-5_Mag_2023

This commit is contained in:
Francesco Lannutti 2023-05-09 22:43:27 +02:00
commit 0c19cb2b0b
1 changed files with 7 additions and 8 deletions

15
compile_linux_klu.sh Normal file → Executable file
View File

@ -22,16 +22,15 @@
SECONDS=0
# We need to remove all remnants of a previous compile
if test "$1" = "d"; then
if [ ! -d "debug" ]; then
mkdir debug
if [ $? -ne 0 ]; then echo "mkdir debug failed"; exit 1 ; fi
fi
rm -f -r debug
mkdir debug
if [ $? -ne 0 ]; then echo "mkdir debug failed"; exit 1 ; fi
else
if [ ! -d "release" ]; then
mkdir release
if [ $? -ne 0 ]; then echo "mkdir release failed"; exit 1 ; fi
fi
rm -f -r release
mkdir release
if [ $? -ne 0 ]; then echo "mkdir release failed"; exit 1 ; fi
fi
# If compiling sources from tarball, you may comment out the following two lines: