📄 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"#ALLOBJS += sb1250_arena.oALLOBJS += dev_sb1250_uart.o dev_sb1250_ethernet.o dev_sb1250_pcmcia.o dev_jtag.oALLOBJS += dev_sb1250_pcihost.o cfe_device_ldr.oALLOBJS += sb1250_smbus.oALLOBJS += ui_soccmds.o ui_corecmds.o ui_tempsensor.o ALLOBJS += cfe_tests.o ALLOBJS += ui_reset.oALLOBJS += ui_phycmds.oALLOBJS += ui_cpuinfo.oALLOBJS += ui_spdcmds.oALLOBJS += ui_memtest.o ui_soccmds.o : ${CHIPSET_SRC}/ui_soccmds.c ${CPU}_socregs.inc# Pick compiler flags based on what the compiler supports. -mcpu=...# is the old way; the current compiler does not allow it. The old# compiler, unfortunately, didn't do the right thing with -march=...# without a reasonable -mipsN flag.ifeq (0,$(shell $(GCC) -mcpu=sb1 -mips4 -S -xc -o /dev/null /dev/null > /dev/null 2>&1 ; echo $$?))CFLAGS += -mcpu=sb1 -mips4elseCFLAGS += -march=sb1endif## Deal with pass1's little quirks##CFLAGS += -D_SB1250_PASS1_WORKAROUNDS_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -