makefile

来自「Linux内核源代码 为压缩文件 是<<Linux内核>&gt」· 代码 · 共 61 行

TXT
61
字号
## 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 + =
减小字号Ctrl + -
显示快捷键?