📄 makect.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -