summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-11-05 22:10:40 +0300
committerAndrei Karas <akaras@inbox.ru>2014-11-05 22:26:17 +0300
commit5f96a4e54f48cc92fd844ceceac7980e4922f3fe (patch)
tree5b1986598d11f312f02b68352ea537664f88d0ff /build.sh
parent0286f10d285d54a116315a8e0cb1714359685d42 (diff)
downloadevol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.gz
evol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.bz2
evol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.xz
evol-hercules-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.zip
Change build script to build in build directory.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 8a423e9..4a5bc6e 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,8 @@
#!/bin/bash
+mkdir build
autoreconf -i
-./configure
+cd build
+../configure
make -j3
+cd -