mirror of
https://github.com/rvtr/twl_wrapsdk.git
synced 2025-10-31 06:11:10 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/twl_wrapsdk/trunk@234 4ee2a332-4b2b-5046-8439-1ba90f034370
48 lines
2.3 KiB
Bash
48 lines
2.3 KiB
Bash
#! bash -f
|
|
#----------------------------------------------------------------------------
|
|
#----------------------------------------------------------------------------
|
|
# ユーザの開発環境に依存した設定
|
|
#----------------------------------------------------------------------------
|
|
#----------------------------------------------------------------------------
|
|
|
|
#----------------------------------------------------------------------------
|
|
# パッケージ名
|
|
#----------------------------------------------------------------------------
|
|
export PACKAGE_NAME=twl_wrapsdk
|
|
|
|
#----------------------------------------------------------------------------
|
|
# CodeWarrior のインストール先
|
|
#----------------------------------------------------------------------------
|
|
export CW_2_0_twl='C:\Program Files\Freescale\CW for NINTENDO DS V2.0'
|
|
|
|
#----------------------------------------------------------------------------
|
|
# CVS サーバの設定
|
|
#----------------------------------------------------------------------------
|
|
export SVNROOT=http://Aqua/svn/$PACKAGE_NAME
|
|
export SVNROOT_TWLSDK=$SVNROOT/trunk
|
|
|
|
#----------------------------------------------------------------------------
|
|
# ビルドディレクトリ位置
|
|
#----------------------------------------------------------------------------
|
|
export WORKSPACE_ROOT=$TWLSDK_ROOT/dev/autobuild
|
|
|
|
#----------------------------------------------------------------------------
|
|
#----------------------------------------------------------------------------
|
|
# 以下共通設定値
|
|
#----------------------------------------------------------------------------
|
|
#----------------------------------------------------------------------------
|
|
export BUILDER_ROOT="`cygpath -a $0 | sed 's/\(\/builder\)\/.*$/\1/'`"
|
|
export PROJECT_ROOT="$BUILDER_ROOT/projects"
|
|
export SVN="svn"
|
|
|
|
export SENDREPORT_ROOT="$BUILDER_ROOT/sendreport"
|
|
export SENDMAIL="$SENDREPORT_ROOT/sendreport.sh"
|
|
export LOG_FILTER="$SENDREPORT_ROOT/sendreport-logfilter.awk"
|
|
export MAKEHEADER="$SENDREPORT_ROOT/makeheader.sh"
|
|
export MAKENOW="$SENDREPORT_ROOT/makenow.sh"
|
|
export SENDREPORT_TMPDIR="$SENDREPORT_ROOT/tmp"
|
|
export ERRORS_LOG="$SENDREPORT_TMPDIR/errors.log"
|
|
export TMP_REPORT="$SENDREPORT_TMPDIR/report.tmp"
|
|
|
|
#----------------------------------------------------------------------------
|