📄 makefile
字号:
## This is just a Makefile fragment -- it is included by the master# makefile, cfe.mk## This file should just append object file names to "ALLOBJS"### Macro Contains# CRT0OBJS Files that must be linked first for CFE# ALLOBJS Other files for CFE# ZCRTO0OBJS Files that must be linked first for ZIPSTART# ZSOBJS ZIPSTART object files### These files are needed by ZIPSTART#ZSOBJS += sb1250_cpu.o sb1_cpuinit.o sb1250_altcpu.o sb1250_l1cache.o \ sb1250_l2cache.o sb1250_draminit.o diag_null.o## These files are needed by normal CFE#ALLOBJS += sb1250_cpu.o sb1_cpuinit.o sb1250_altcpu.o sb1250_l1cache.o \ sb1250_l2cache.o sb1250_draminit.o sb1250_utils.oifeq ($(strip ${CFG_PCI}),1)ALLOBJS += sb1250_pci_machdep.oendifALLOBJS += diag_l2cache.o## Deal with pass1's little quirks##CFLAGS += -D_SB1250_PASS1_WORKAROUNDS_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -