-
Notifications
You must be signed in to change notification settings - Fork 2
Home
TJ Ellis edited this page Jun 28, 2015
·
2 revisions
##Building SBSAT
-
Grab the source code
git clone https://github.com/nerdling/SBSAT.git
-
Install autotools, bison, flex, and help2man. On Debian based systems, this can be done with apt-get:
sudo apt-get install autotools bison flex help2man
-
Change to the source directory
cd SBSAT
-
Configure the build
./configure
-
Generate necessary build files
automake --add-missing
-
Build SBSAT
make
-
Run tests to verify everything built properly
make check
-
Install binaries and documentation
sudo make install