summaryrefslogtreecommitdiff
path: root/sys/modules/hyperv/vmbus/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sys/modules/hyperv/vmbus/Makefile')
-rw-r--r--sys/modules/hyperv/vmbus/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/hyperv/vmbus/Makefile b/sys/modules/hyperv/vmbus/Makefile
new file mode 100644
index 0000000000000..df8464e02174d
--- /dev/null
+++ b/sys/modules/hyperv/vmbus/Makefile
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../../dev/hyperv/vmbus \
+ ${.CURDIR}/../../../dev/hyperv/utilities
+
+KMOD= hv_vmbus
+
+SRCS = hv_channel.c \
+ hv_channel_mgmt.c \
+ hv_connection.c \
+ hv_hv.c \
+ hv_ring_buffer.c \
+ hv_vmbus_drv_freebsd.c \
+ hv_vmbus_priv.h
+
+CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
+ -I${.CURDIR}/../../../dev/hyperv/vmbus \
+ -I${.CURDIR}/../../../dev/hyperv/utilities
+
+.include <bsd.kmod.mk>