makefile

来自「linux嵌入式课程实践中的一个关于声卡驱动程序 。」· 代码 · 共 28 行

TXT
28
字号
## Makefile for the DMA sound driver## 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 in the main makefile...O_TARGET = dmasound.oexport-objs := dmasound_core.olist-multi := dmasound_pmac.odmasound_pmac-objs := dmasound_awacs.o trans_16.o tas3001c.o dac3550a.oobj-$(CONFIG_DMASOUND)        += dmasound_core.oobj-$(CONFIG_DMASOUND_ATARI)  += dmasound_atari.oobj-$(CONFIG_DMASOUND_PMAC)   += dmasound_pmac.oobj-$(CONFIG_DMASOUND_PAULA)  += dmasound_paula.oobj-$(CONFIG_DMASOUND_Q40)    += dmasound_q40.oinclude $(TOPDIR)/Rules.makedmasound_pmac.o: $(dmasound_pmac-objs)	$(LD) $(EXTRA_LDFLAGS) -r -o $@ $(dmasound_pmac-objs)

⌨️ 快捷键说明

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