Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the DMA sound driver
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definitions are now in the main makefile...
  9. O_TARGET = dmasound.o
  10. export-objs := dmasound_core.o
  11. list-multi := dmasound_pmac.o
  12. dmasound_pmac-objs := dmasound_awacs.o trans_16.o tas3001c.o dac3550a.o
  13. obj-$(CONFIG_DMASOUND)        += dmasound_core.o
  14. obj-$(CONFIG_DMASOUND_ATARI)  += dmasound_atari.o
  15. obj-$(CONFIG_DMASOUND_PMAC)   += dmasound_pmac.o
  16. obj-$(CONFIG_DMASOUND_PAULA)  += dmasound_paula.o
  17. obj-$(CONFIG_DMASOUND_Q40)    += dmasound_q40.o
  18. include $(TOPDIR)/Rules.make
  19. dmasound_pmac.o: $(dmasound_pmac-objs)
  20. $(LD) $(EXTRA_LDFLAGS) -r -o $@ $(dmasound_pmac-objs)