Makefile 729 B

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