summaryrefslogtreecommitdiff
path: root/build.sh
blob: e927c39e65a1e4cb43a4928e4e400d35c6bfdce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

mkdir build
autoreconf -i
cd build
../configure
make -j3
cd -
exit $?