autotools: switch to autotools buildsystem

This commit is contained in:
Cory Fields
2013-05-27 19:55:01 -04:00
parent 2fee100f03
commit 35b8af9226
59 changed files with 3527 additions and 1508 deletions

15
qa/pull-tester/pull-tester.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
# Helper script for pull-tester.
#Param 1: path to bitcoin srcroot
#Param ...: arguments for build-test.sh
if [ $# -lt 1 ]; then
echo "usage: $0 [bitcoin srcroot] build-test arguments..."
fi
cd $1
shift
./autogen.sh
./configure
./qa/pull-tester/build-tests.sh "$@"