makect.sh

来自「ecos实时嵌入式操作系统」· Shell 代码 · 共 26 行

SH
26
字号
#!/bin/sh# A shell script for helping to compile the Configuration ToolLEVEL=$1TARGET="$2 $3 $4 $5 $6 $7 $8 $9"if [ "$1" = "" ] || [ "$2" = "" ]; then  echo Usage: makect debug/release full/wx/ct/ecc/cleanall  exitfiif [ "$LEVEL" != "debug" ] && [ "$LEVEL" != "release" ]; then  echo First argument should be debug or release.  exitfiECOSDIR=/home/julians/cvs/eCos# Necessary if you are using a local version of the compiler# and these haven't been installedexport BISON_SIMPLE=/usr/lib/bison.simpleexport BISON_HAIRY=/usr/lib/bison.hairyexport ECOSDIRexport CONFIGTOOLSRCDIR=$ECOSDIR/host/tools/configtool/standalone/wxwinexport WXDIR=/home/julians/local/wx2dev/wxWindowsmake -f ${CONFIGTOOLSRCDIR}/Makefile WXDIR=$WXDIR ECOSDIR=$ECOSDIR LEVEL=$LEVEL $TARGET

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?