📄 makefile
字号:
## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -