mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
meson: convert hw/rdma
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
9f6ede2f1a
commit
19233c978a
@ -19,7 +19,6 @@ devices-dirs-$(CONFIG_IPMI) += ipmi/
|
||||
devices-dirs-y += isa/
|
||||
devices-dirs-y += misc/
|
||||
devices-dirs-y += net/
|
||||
devices-dirs-y += rdma/
|
||||
endif
|
||||
|
||||
common-obj-y += $(devices-dirs-y)
|
||||
|
@ -6,6 +6,7 @@ subdir('pci')
|
||||
subdir('pci-bridge')
|
||||
subdir('pci-host')
|
||||
subdir('pcmcia')
|
||||
subdir('rdma')
|
||||
subdir('rtc')
|
||||
subdir('scsi')
|
||||
subdir('sd')
|
||||
|
@ -1,3 +0,0 @@
|
||||
obj-$(CONFIG_VMW_PVRDMA) += rdma_utils.o rdma_backend.o rdma_rm.o rdma.o
|
||||
obj-$(CONFIG_VMW_PVRDMA) += vmw/pvrdma_dev_ring.o vmw/pvrdma_cmd.o \
|
||||
vmw/pvrdma_qp_ops.o vmw/pvrdma_main.o
|
10
hw/rdma/meson.build
Normal file
10
hw/rdma/meson.build
Normal file
@ -0,0 +1,10 @@
|
||||
specific_ss.add(when: 'CONFIG_VMW_PVRDMA', if_true: files(
|
||||
'rdma.c',
|
||||
'rdma_backend.c',
|
||||
'rdma_rm.c',
|
||||
'rdma_utils.c',
|
||||
'vmw/pvrdma_cmd.c',
|
||||
'vmw/pvrdma_dev_ring.c',
|
||||
'vmw/pvrdma_main.c',
|
||||
'vmw/pvrdma_qp_ops.c',
|
||||
))
|
Loading…
Reference in New Issue
Block a user