?? defines.gnu
字號:
# Generic macros for GNU makefiles
include $(MKFROOT)/defines.mkf
ifeq ($(OS), Windows_NT)
_PATH=$(subst cygdrive,cygwin, $(PATH))
ifneq (, $(findstring cygwin, $(_PATH)))
# For Cygwin on Windows (we looked for cygwin or cygdrive in the PATH
# environment variable - if present assume Cygwin is on the path).
CP=cp -f
RM=rm -f
# We override the command for RLTOOL too as the one in defines.mkf doesn't work
# under Cygwin on Windows. We use 'which' to locate the compiler and extract
# the path to it in creating the rltool command line.
_CC_LOCATION=$(shell which $(CC))
_ST40ROOT_BIN=$(shell cygpath -m $(_CC_LOCATION:$(CC)=))
RLTOOL=perl -w $(_ST40ROOT_BIN)sh4rltool.pl
else
CP=-copy /y
RM=-del /q /f
endif
else
CP=cp -f
RM=rm -f
endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -