aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/hyperv/utilities
diff options
context:
space:
mode:
authorPeter Grehan <grehan@FreeBSD.org>2013-06-15 06:21:17 +0000
committerPeter Grehan <grehan@FreeBSD.org>2013-06-15 06:21:17 +0000
commit7d99ab9fd0cc2c1ce2ecef0ed6d0672c2a50b0cb (patch)
treee06aa190c718fdeb7b8925e9df1b5d5ba2f67fe6 /sys/modules/hyperv/utilities
parent9d3b2dabfb06f9800d3a8007c5ce52428b8fe825 (diff)
downloadsrc-7d99ab9fd0cc2c1ce2ecef0ed6d0672c2a50b0cb.tar.gz
src-7d99ab9fd0cc2c1ce2ecef0ed6d0672c2a50b0cb.zip
make glue to hook up the hyperv kmods to the build.
Modified from the original Microsoft versions to pull code/headers in from the sys/contrib/dev directory.
Notes
Notes: svn path=/projects/hyperv/; revision=251777
Diffstat (limited to 'sys/modules/hyperv/utilities')
-rw-r--r--sys/modules/hyperv/utilities/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/hyperv/utilities/Makefile b/sys/modules/hyperv/utilities/Makefile
new file mode 100644
index 000000000000..388182cedd5b
--- /dev/null
+++ b/sys/modules/hyperv/utilities/Makefile
@@ -0,0 +1,13 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../../contrib/dev/hyperv/utilities
+
+KMOD= hv_utils
+
+SRCS = hv_util.c
+
+CFLAGS+= -I${.CURDIR}/../../../contrib/dev/hyperv/include \
+ -I${.CURDIR}/../../../contrib/dev/hyperv/vmbus \
+ -I${.CURDIR}/../../../contrib
+
+.include <bsd.kmod.mk>