blob: 5472495b5a9d6370df6a3bce06005892ac0dc776 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
COPTS="--with-tests=regular"
PARALLEL_JOBS=10
# Normal build test of all targets
./autogen.sh $COPTS $@
make -j $PARALLEL_JOBS
make -j $PARALLEL_JOBS examples
make -j $PARALLEL_JOBS benchmark
|