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

📄 makefile

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻
字号:
## Makefile for the Linux IrDA protocol layer.## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (ie not a .c file).## Note 2! The CFLAGS definition is now in the main makefile...O_TARGET := irda.oexport-objs := irsyms.oobj-y	 := iriap.o iriap_event.o irlmp.o irlmp_event.o irlmp_frame.o \            irlap.o irlap_event.o irlap_frame.o timer.o qos.o irqueue.o \            irttp.o irda_device.o irias_object.o crc.o wrapper.o af_irda.o \	    discovery.o parameters.o irsyms.oifeq ($(CONFIG_IRDA),m)obj-m   := $(O_TARGET)endifobj-$(CONFIG_IRDA_COMPRESSION) += irlap_comp.oobj-$(CONFIG_PROC_FS) += irproc.oobj-$(CONFIG_SYSCTL) += irsysctl.oobj-$(CONFIG_IRLAN) += irlan/irlan.osubdir-$(CONFIG_IRLAN) += irlansubdir-$(CONFIG_IRNET) += irnetsubdir-$(CONFIG_IRCOMM) += ircommsubdir-$(CONFIG_IRDA_COMPRESSION) += compressorsifeq ($(CONFIG_IRLAN),y)obj-y += irlan/irlan.oendififeq ($(CONFIG_IRNET),y)obj-y += irnet/irnet.oendififeq ($(CONFIG_IRDA_DEFLATE),y)obj-y += compressors/irda_deflate.oelse  ifeq ($(CONFIG_IRDA_DEFLATE),m)  MOD_TO_LIST += irda_deflate.o  endifendififeq ($(CONFIG_IRCOMM),y)obj-y += ircomm/ircomm_and_tty.oendifinclude $(TOPDIR)/Rules.maketar:		tar -cvf /dev/f1 .

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -