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

📄 makefile

📁 《嵌入式系统设计与实例开发实验教材二源码》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_PROC_FS) += irproc.oobj-$(CONFIG_SYSCTL) += irsysctl.oobj-$(CONFIG_IRLAN) += irlan/irlan.osubdir-$(CONFIG_IRLAN) += irlansubdir-$(CONFIG_IRNET) += irnetsubdir-$(CONFIG_IRCOMM) += ircommifeq ($(CONFIG_IRLAN),y)obj-y += irlan/irlan.oendififeq ($(CONFIG_IRNET),y)obj-y += irnet/irnet.oendififeq ($(CONFIG_IRCOMM),y)obj-y += ircomm/ircomm_and_tty.oendifinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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