diff options
author | toni <matzeton@googlemail.com> | 2016-07-04 15:36:07 +0200 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2016-07-04 15:36:07 +0200 |
commit | cb6047b694a86f78723a613819677227f14e30c3 (patch) | |
tree | 4eb9c2f2339c5185fec81447bd832d4d4f0bd3d0 /compile.sh | |
parent | 7248ec097b19828e047e83df89aa7bac4150c2cd (diff) | |
parent | bc30ed7f5624f7d5ccc1e9937ed7bcb7faae9892 (diff) |
Merge branch 'master' into jessie
Conflicts:
main.c
Diffstat (limited to 'compile.sh')
-rwxr-xr-x | compile.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/compile.sh b/compile.sh new file mode 100755 index 0000000..5c7b1d6 --- /dev/null +++ b/compile.sh @@ -0,0 +1,11 @@ +#!/bin/sh +set -e + +DIR=$(dirname $0) +PWD=$(pwd) + +cd ${DIR} +./autogen.sh +./configure $* +make +cd ${PWD} |