Lines Matching refs:run
176 autotools run only 'make autotools'
177 configure run only 'configure'
178 build run only 'make'
179 test run only 'make test' (not supported for cross-compile build)
180 test-c run only 'make test-c' (not supported for cross-compile build)
181 test-shell run only 'make test-shell' (not supported for cross-compile build)
182 install run only 'make install'
196 run=
209 autotools|configure|build|test|test-c|test-shell|install) run="$OPTARG";;
210 *) echo "Wrong run type '$OPTARG'" >&2; usage; exit 1;;
222 if [ -z "$run" -o "$run" = "autotools" ]; then
226 if [ -z "$run" -o "$run" = "configure" ]; then
230 if [ -z "$run" -o "$run" = "build" ]; then
235 if [ -z "$run" -o "$run" = "test" -o "$run" = "test-c" -o "$run" = "test-shell" ]; then
239 eval test_${tree}_tree $run
243 if [ -z "$run" -o "$run" = "install" ]; then
247 echo "make install skipped, use -i to run it"