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

📄 makefile

📁 9200音频驱动,是atmel 9200 linux 下2.6.15下的驱动
💻
字号:
## Makefile for the SSI 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 definition is now inherited from the# parent makefile.#O_TARGET	:= ssi.oobj-y		:=obj-m		:=obj-n		:=obj-		:=export-objs	:=list-multi	:=obj-$(CONFIG_SSI)		+= ssi_core.oobj-$(CONFIG_SSI_CLPS711X)	+= clps711x_ssi1.oobj-y				+= juno.o# Extract lists of the multi-part drivers.# The 'int-*' lists are intermediate files used to build the multi's.multi-y		:= $(filter $(list-multi), $(obj-y))multi-m		:= $(filter $(list-multi), $(obj-m))int-y		:= $(sort $(foreach m, $(multi-y), $($(basename $(m))-objs)))int-m		:= $(sort $(foreach m, $(multi-m), $($(basename $(m))-objs)))# Files that are both resident and modular; remove from modular.obj-m		:= $(filter-out $(obj-y), $(obj-m))int-m		:= $(filter-out $(int-y), $(int-m))# Take multi-part drivers out of obj-y and put components in.obj-y		:= $(filter-out $(list-multi), $(obj-y)) $(int-y)# Translate to Rules.make lists.O_OBJS		:= $(filter-out $(export-objs), $(obj-y))OX_OBJS		:= $(filter     $(export-objs), $(obj-y))M_OBJS		:= $(sort $(filter-out $(export-objs), $(obj-m)))MX_OBJS		:= $(sort $(filter     $(export-objs), $(obj-m)))include $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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