source: ssp_armv6_m_gcc/branches/rubycfg/install.sh@ 414

Last change on this file since 414 was 414, checked in by nmir-saito, 4 years ago

support ruby configurator(file's charactor code is converted to UTF-8)

  • Property svn:mime-type set to text/plain; charset=utf-8
File size: 273 bytes
Line 
1#!/usr/bin/env bash
2set -eu
3
4SCRIPT_DIR=$(cd $(dirname $0);pwd)
5
6if [ $# -lt 1 ]; then
7 echo "usage: install.sh dest_ssp_dir"
8 exit 1
9else
10 SSPDIR=$1
11fi
12
13cp -a ${SCRIPT_DIR}/armv6_m_gcc ${SSPDIR}/arch/
14cp -a ${SCRIPT_DIR}/lpcxpresso_lpc812_gcc ${SSPDIR}/target/
15
16exit 0
Note: See TracBrowser for help on using the repository browser.