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

📄 makefile

📁 键盘设备驱动,只需修改代码里的功能码和系统码即可使用
💻
字号:
# 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/sp1000/mipsel-linux/include/asm/gcc -G 0 -mno-abicalls -fno-pic -pipe -mtune=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 + -