Makefile 711 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ccflags-y := -DIPATH_IDSTR='"QLogic kernel.org driver"' \
  2. -DIPATH_KERN_TYPE=0
  3. obj-$(CONFIG_INFINIBAND_IPATH) += ib_ipath.o
  4. ib_ipath-y := \
  5. ipath_cq.o \
  6. ipath_diag.o \
  7. ipath_dma.o \
  8. ipath_driver.o \
  9. ipath_eeprom.o \
  10. ipath_file_ops.o \
  11. ipath_fs.o \
  12. ipath_init_chip.o \
  13. ipath_intr.o \
  14. ipath_keys.o \
  15. ipath_mad.o \
  16. ipath_mmap.o \
  17. ipath_mr.o \
  18. ipath_qp.o \
  19. ipath_rc.o \
  20. ipath_ruc.o \
  21. ipath_sdma.o \
  22. ipath_srq.o \
  23. ipath_stats.o \
  24. ipath_sysfs.o \
  25. ipath_uc.o \
  26. ipath_ud.o \
  27. ipath_user_pages.o \
  28. ipath_user_sdma.o \
  29. ipath_verbs_mcast.o \
  30. ipath_verbs.o
  31. ib_ipath-$(CONFIG_HT_IRQ) += ipath_iba6110.o
  32. ib_ipath-$(CONFIG_X86_64) += ipath_wc_x86_64.o
  33. ib_ipath-$(CONFIG_PPC64) += ipath_wc_ppc64.o