Moved files to 'reactics-bdd'

This commit is contained in:
Artur Meski
2019-03-03 22:26:33 +00:00
parent 21edba3c65
commit 97c83ba535
1694 changed files with 0 additions and 0 deletions

13
reactics-bdd/build_cudd.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
CUDD_VERSION=3.0.0
INSTALL_DIR="$PWD"
tar -zxvf dist/cudd-$CUDD_VERSION.tar.gz
cd cudd-$CUDD_VERSION
./configure --enable-shared --enable-obj --prefix=$INSTALL_DIR/cudd
make -j4
make install
cd ..
rm -rf cudd-$CUDD_VERSION