Makefile 669 B

123456789101112131415161718192021222324252627282930313233343536
  1. EXTRA_CFLAGS += -DIPATH_IDSTR='"PathScale 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. ib_ipath-y := \
  21. ipath_cq.o \
  22. ipath_keys.o \
  23. ipath_mad.o \
  24. ipath_mr.o \
  25. ipath_qp.o \
  26. ipath_rc.o \
  27. ipath_ruc.o \
  28. ipath_srq.o \
  29. ipath_uc.o \
  30. ipath_ud.o \
  31. ipath_verbs.o \
  32. ipath_verbs_mcast.o