Run make in parallel when building releases

This commit is contained in:
Jay Berkenbilt 2012-12-31 10:57:45 -05:00
parent 66ef118b43
commit a9983090ca
3 changed files with 4 additions and 0 deletions

View File

@ -119,6 +119,7 @@ if ($run_tests)
{
cd($srcdir);
run("./configure");
run("make -j8");
run("make check");
cd($pwd);
}

View File

@ -12,9 +12,11 @@ PATH=$cwd/libqpdf/build:$PATH
rm -rf install-mingw* install-msvc*
./config-mingw64
make -j8
make check install
make distclean
./config-mingw32
make -j8
make check install
make distclean

View File

@ -17,5 +17,6 @@ cwd=`pwd`
PATH=$cwd/libqpdf/build:$PATH
./config-msvc $w
make -j8
make check install
make distclean