This commit is contained in:
Artur Meski
2022-10-28 21:07:46 +01:00
parent 632286ec7f
commit 33ca0fd6e9

View File

@@ -58,10 +58,18 @@ then
elif [[ "$mode" == "setup" ]]
then
which -s gmake
if [[ $? -eq 0 ]]
then
MAKE="gmake"
else
MAKE="make"
fi
git pull
cd $REACTICS_BDD
./build_cudd.sh
make
$MAKE
else