⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 defines.gnu

📁 采用ST20 CPU的机顶盒的烧写程序
💻 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 + -