makefile
来自「Sharp芯片的SMA架构的中间层源代码,结构非常清晰易懂,是编写驱动系统软件入」· 代码 · 共 24 行
TXT
24 行
############################################################################
# Pick up the default build rules
#
include $(SHARP_EVB_INST_DIR)/Software/MakeRules/make.$(SOC)$(TOOL)
############################################################################
# Arm speciic flags
#
ifeq ($(TOOL), arm)
CFLAGS += -DARMBUILD
endif
############################################################################
# Pick up the .s and .c files in the directory
#
OBJS = $(SRC:%.c=%.o) $(ASM:%.s=%.o)
############################################################################
# Compile the code
#
include $(SHARP_EVB_INST_DIR)/Software/MakeRules/make.$(SOC)default
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?