📄 makefile.bak
字号:
# This is the kernel makefile, it is not used when compiling modules outside# the kernel tree.O_TARGET := sp_keyb.oobj-y := keyb.o ir.oobj-m := $(O_TARGET)#include $(TOPDIR)/Rules.makeCROSS = mipsel-linux-CC = $(CROSS)gccLD = $(CROSS)ld#CFLAGS = -D__KERNEL__ -I/u2/sphe1000/linux-2.4.21/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fomit-frame-pointer -I /u2/sphe1000/linux-2.4.21/include/asm/gcc -G 0 -mno-abicalls -fno-pic -pipe -mcpu=r3000 -mips1 -DMODULE -mlong-calls -nostdinc -iwithprefix includeCFLAGS = -D__KERNEL__ -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fomit-frame-pointer -I /usr/local/sunplus/mipsel/include/asm/gcc -G 0 -mno-abicalls -fno-pic -pipe -mcpu=r3000 -mips1 -DMODULE -mlong-callsall: $(O_TARGET)modules: $(O_TARGET)$(O_TARGET): $(obj-y) rm -f $@ $(LD) -r -o $@ $^install: $(O_TARGET) cp -f $(O_TARGET) $(DESTDIR)clean: rm -f *.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -