b0301d2f4cd96f329b63a46d691ed23784733373
[platform/core/ml/nnfw.git] / infra / nnfw / command / build
1 #!/bin/bash
2
3 import "build.configuration"
4
5 if [[ ! -d "${BUILD_PATH}" ]]; then
6   echo "[ERROR] '${BUILD_PATH}' does not exist. Please run 'configure' first"
7   exit 255
8 fi
9
10 cd ${BUILD_PATH}
11 make "$@"