freebsd-dev/sys/modules/hyperv/vmbus/Makefile
Peter Grehan 7d99ab9fd0 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.
2013-06-15 06:21:17 +00:00

22 lines
495 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../../contrib/dev/hyperv/vmbus \
${.CURDIR}/../../../contrib/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}/../../../contrib/dev/hyperv/include \
-I${.CURDIR}/../../../contrib/dev/hyperv/vmbus \
-I${.CURDIR}/../../../contrib/dev/hyperv/utilities \
-I${.CURDIR}/../../../contrib
.include <bsd.kmod.mk>