opnsense-src/sys/modules/hyperv/hvsock/Makefile
Wei Hu a560f3ebd7 HyperV socket implementation for FreeBSD
This change adds Hyper-V socket feature in FreeBSD. New socket address
family AF_HYPERV and its kernel support are added.

Submitted by:	Wei Hu <weh@microsoft.com>
Reviewed by:	Dexuan Cui <decui@microsoft.com>
Relnotes:	yes
Sponsored by:	Microsoft
Differential Revision:	https://reviews.freebsd.org/D24061
2020-05-20 11:03:59 +00:00

13 lines
245 B
Makefile

# $FreeBSD$
.PATH: ${SRCTOP}/sys/dev/hyperv/hvsock
KMOD= hv_sock
SRCS= hv_sock.c
SRCS+= hv_sock.h
CFLAGS+= -I${SRCTOP}/sys/dev/hyperv/include \
-I${SRCTOP}/sys/dev/hyperv/vmbus \
-I${SRCTOP}/sys/dev/hyperv/hvsock
.include <bsd.kmod.mk>