source: ssp_armv6_m_gcc/trunk/install.sh@ 421

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

Merge branch 'rubycfg' to trunk

  • Property svn:mime-type set to text/plain; charset=utf-8
File size: 273 bytes
RevLine 
[353]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
[414]13cp -a ${SCRIPT_DIR}/armv6_m_gcc ${SSPDIR}/arch/
14cp -a ${SCRIPT_DIR}/lpcxpresso_lpc812_gcc ${SSPDIR}/target/
[353]15
16exit 0
Note: See TracBrowser for help on using the repository browser.