Files
reactics/build_cudd.sh
2018-02-10 12:43:22 +00:00

10 lines
158 B
Bash
Executable File

#!/bin/sh
CUDD_VERSION=3.0.0
INSTALL_DIR="$PWD"
cd cudd-$CUDD_VERSION
./configure --enable-shared --enable-obj --prefix=$INSTALL_DIR/cudd
make
make install