#
# Makefile for Infiniband
# Taken wholesale from MD.
#

O_TARGET	:= infi.o

# Link order is not too important, because core.o takes initialization
# from __initcall(), while the rest of it has module_init().
# However, if core.o is made a module, the link order will get important.
obj-y					+= core.o
obj-$(CONFIG_INFI)			+= hca-tcp.o
obj-$(CONFIG_INFI)			+= dev-hu.o
# obj-$(CONFIG_INFI_HU)			+= dev-hu.o

export-objs	:= core.o
# list-multi	:= lvm-mod.o
# lvm-mod-objs	:= lvm.o lvm-snap.o lvm-fs.o

include $(TOPDIR)/Rules.make

# lvm-mod.o: $(lvm-mod-objs)
# 	$(LD) -r -o $@ $(lvm-mod-objs)
