mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-27 08:00:11 +00:00
add makefiles for rdma
This commit is contained in:
parent
535fbad68f
commit
d9d41e2780
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=178794
9
sys/modules/rdma/Makefile
Normal file
9
sys/modules/rdma/Makefile
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
SUBDIR= addr
|
||||||
|
SUBDIR+= cma
|
||||||
|
SUBDIR+= iwcm
|
||||||
|
SUBDIR+= core
|
||||||
|
SUBDIR+= krping
|
||||||
|
|
||||||
|
.include <bsd.subdir.mk>
|
10
sys/modules/rdma/addr/Makefile
Normal file
10
sys/modules/rdma/addr/Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
RDMA= ${.CURDIR}/../../../contrib/rdma
|
||||||
|
.PATH: ${RDMA}
|
||||||
|
|
||||||
|
KMOD= rdma_addr
|
||||||
|
SRCS= device_if.h bus_if.h pci_if.h pcib_if.h opt_sched.h
|
||||||
|
SRCS+= rdma_addr.c
|
||||||
|
|
||||||
|
.include <bsd.kmod.mk>
|
10
sys/modules/rdma/cma/Makefile
Normal file
10
sys/modules/rdma/cma/Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
RDMA= ${.CURDIR}/../../../contrib/rdma
|
||||||
|
.PATH: ${RDMA}
|
||||||
|
|
||||||
|
KMOD= rdma_cma
|
||||||
|
SRCS= device_if.h bus_if.h pci_if.h pcib_if.h opt_sched.h
|
||||||
|
SRCS+= rdma_cma.c
|
||||||
|
|
||||||
|
.include <bsd.kmod.mk>
|
12
sys/modules/rdma/core/Makefile
Normal file
12
sys/modules/rdma/core/Makefile
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
RDMA= ${.CURDIR}/../../../contrib/rdma
|
||||||
|
.PATH: ${RDMA}
|
||||||
|
|
||||||
|
KMOD= rdma_core
|
||||||
|
SRCS= device_if.h bus_if.h pci_if.h pcib_if.h
|
||||||
|
SRCS+= rdma_device.c
|
||||||
|
SRCS+= rdma_cache.c
|
||||||
|
SRCS+= rdma_verbs.c
|
||||||
|
|
||||||
|
.include <bsd.kmod.mk>
|
10
sys/modules/rdma/iwcm/Makefile
Normal file
10
sys/modules/rdma/iwcm/Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
RDMA= ${.CURDIR}/../../../contrib/rdma
|
||||||
|
.PATH: ${RDMA}
|
||||||
|
|
||||||
|
KMOD= rdma_iwcm
|
||||||
|
SRCS= device_if.h bus_if.h pci_if.h pcib_if.h opt_sched.h
|
||||||
|
SRCS+= rdma_iwcm.c
|
||||||
|
|
||||||
|
.include <bsd.kmod.mk>
|
10
sys/modules/rdma/krping/Makefile
Normal file
10
sys/modules/rdma/krping/Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
RDMA= ${.CURDIR}/../../../contrib/rdma/krping
|
||||||
|
.PATH: ${RDMA}
|
||||||
|
|
||||||
|
KMOD= krping
|
||||||
|
SRCS= krping.c krping_dev.c getopt.c
|
||||||
|
SRCS+= bus_if.h device_if.h opt_sched.h pci_if.h pcib_if.h
|
||||||
|
|
||||||
|
.include <bsd.kmod.mk>
|
Loading…
Reference in New Issue
Block a user