a4d61e8480
Move the InfiniBand headers from drivers/infiniband/include to include/rdma. This allows InfiniBand-using code to live elsewhere, and lets us remove the ugly EXTRA_CFLAGS include path from the InfiniBand Makefiles. Signed-off-by: Roland Dreier <rolandd@cisco.com>
19 lines
424 B
Makefile
19 lines
424 B
Makefile
obj-$(CONFIG_INFINIBAND) += ib_core.o ib_mad.o ib_sa.o \
|
|
ib_cm.o ib_umad.o ib_ucm.o
|
|
obj-$(CONFIG_INFINIBAND_USER_VERBS) += ib_uverbs.o
|
|
|
|
ib_core-y := packer.o ud_header.o verbs.o sysfs.o \
|
|
device.o fmr_pool.o cache.o
|
|
|
|
ib_mad-y := mad.o smi.o agent.o mad_rmpp.o
|
|
|
|
ib_sa-y := sa_query.o
|
|
|
|
ib_cm-y := cm.o
|
|
|
|
ib_umad-y := user_mad.o
|
|
|
|
ib_ucm-y := ucm.o
|
|
|
|
ib_uverbs-y := uverbs_main.o uverbs_cmd.o uverbs_mem.o
|