#!/bin/bash source "${NNFW_SCRIPT_PATH}/config/build.configuration" if [[ ! -d "${BUILD_ALIAS}" ]]; then echo "'${BUILD_ALIAS}' does not exist. Please run 'configure' first" exit 255 fi if [[ ! -d "${INSTALL_ALIAS}" ]]; then echo "'${INSTALL_ALIAS}' does not exist. Please run 'configure' first" exit 255 fi cd ${BUILD_ALIAS} make install