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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # drivers/scsi/pcmcia/Makefile
  3. #
  4. # Makefile for the Linux PCMCIA SCSI drivers.
  5. #
  6. obj-y :=
  7. obj-m :=
  8. obj-n :=
  9. obj- :=
  10. vpath %c ..
  11. CFLAGS_aha152x.o = -DPCMCIA -D__NO_VERSION__ -DAHA152X_STAT
  12. CFLAGS_fdomain.o = -DPCMCIA -D__NO_VERSION__
  13. CFLAGS_qlogicfas.o = -DPCMCIA -D__NO_VERSION__
  14. # 16-bit client drivers
  15. obj-$(CONFIG_PCMCIA_QLOGIC) += qlogic_cs.o
  16. obj-$(CONFIG_PCMCIA_FDOMAIN) += fdomain_cs.o
  17. obj-$(CONFIG_PCMCIA_AHA152X) += aha152x_cs.o
  18. obj-$(CONFIG_PCMCIA_NINJA_SCSI) += nsp_cs.o
  19. list-multi := qlogic_cs.o fdomain_cs.o aha152x_cs.o
  20. aha152x_cs-objs := aha152x_stub.o aha152x.o
  21. fdomain_cs-objs := fdomain_stub.o fdomain.o
  22. qlogic_cs-objs := qlogic_stub.o qlogicfas.o
  23. include $(TOPDIR)/Rules.make
  24. aha152x_cs.o: $(aha152x_cs-objs)
  25. $(LD) -r -o $@ $(aha152x_cs-objs)
  26. fdomain_cs.o: $(fdomain_cs-objs)
  27. $(LD) -r -o $@ $(fdomain_cs-objs)
  28. qlogic_cs.o: $(qlogic_cs-objs)
  29. $(LD) -r -o $@ $(qlogic_cs-objs)