mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
Hyper-V HID driver using hidbus/hms. Reviewed by: wulf MFC after: 1 week PR: 221074 Differential revision: https://reviews.freebsd.org/D38140
12 lines
234 B
Makefile
12 lines
234 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/hyperv/input
|
|
|
|
KMOD= hv_hid
|
|
SRCS= hv_hid.c
|
|
SRCS+= bus_if.h device_if.h hid_if.h vmbus_if.h
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/hyperv/include \
|
|
-I${SRCTOP}/sys/dev/hyperv/vmbus
|
|
|
|
.include <bsd.kmod.mk>
|