makefile

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

TXT
42
字号
## Makefile for the kernel character device drivers.## 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 definitions are now inherited from the# parent makes..## Object file lists.obj-y		:=obj-m		:=obj-n		:=obj-		:=O_TARGET := radio.o# All of the (potential) objects that export symbols.# This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.export-objs     :=	list-multi	:=	obj-$(CONFIG_RADIO_AZTECH) += radio-aztech.oobj-$(CONFIG_RADIO_RTRACK2) += radio-rtrack2.oobj-$(CONFIG_RADIO_SF16FMI) += radio-sf16fmi.oobj-$(CONFIG_RADIO_CADET) += radio-cadet.oobj-$(CONFIG_RADIO_TYPHOON) += radio-typhoon.oobj-$(CONFIG_RADIO_TERRATEC) += radio-terratec.oobj-$(CONFIG_RADIO_RTRACK) += radio-aimslab.oobj-$(CONFIG_RADIO_ZOLTRIX) += radio-zoltrix.oobj-$(CONFIG_RADIO_MIROPCM20) += radio-miropcm20.oobj-$(CONFIG_RADIO_GEMTEK) += radio-gemtek.oobj-$(CONFIG_RADIO_TRUST) += radio-trust.oobj-$(CONFIG_RADIO_MAESTRO) += radio-maestro.oinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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