f5bb0c0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash # build the project BASEDIR=$(dirname $0) source $BASEDIR/defaults.sh if ! $WITH_CMAKE ; then make --jobs $NUM_THREADS all test pycaffe warn else cd build make --jobs $NUM_THREADS all test.testbin fi make lint