diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 22:10:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-05 22:26:17 +0300 |
commit | 5f96a4e54f48cc92fd844ceceac7980e4922f3fe (patch) | |
tree | 5b1986598d11f312f02b68352ea537664f88d0ff | |
parent | 0286f10d285d54a116315a8e0cb1714359685d42 (diff) | |
download | plugin-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.gz plugin-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.bz2 plugin-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.tar.xz plugin-5f96a4e54f48cc92fd844ceceac7980e4922f3fe.zip |
Change build script to build in build directory.
-rw-r--r-- | .gitignore | 30 | ||||
-rwxr-xr-x | build.sh | 5 |
2 files changed, 5 insertions, 30 deletions
@@ -84,35 +84,7 @@ mana.creator.user* run/* my/* win/* -build/logs -build/make.log -build/make1.log -build/make2.log -build/make_nsiqcppstyle.txt -build/bcmake1 -build/bmake1 -build/gprof.png -build/gprof.txt -build/gprof.dot -build/gmon.out -build/makecheck.txt -build/makecheck_err.txt -build/makeflawfinder.log -build/makegprof1 -build/pmake1 -build/packwin1 -build/toolchain.cmake1 -build/makerats.log -build/make_hc.txt -build/make_hc2.txt -build/makecheck1 -build/makecheck2 -build/makecheck3 -build/makecheck4 -build/makecheck5 -build/makecheck6 -build/clmake -build/bmakesnapshot +/build/ # debian debian/* @@ -1,5 +1,8 @@ #!/bin/bash +mkdir build autoreconf -i -./configure +cd build +../configure make -j3 +cd - |