diff options
author | sephe <sephe@FreeBSD.org> | 2017-01-05 08:21:46 +0000 |
---|---|---|
committer | sephe <sephe@FreeBSD.org> | 2017-01-05 08:21:46 +0000 |
commit | 3ea95a114bad3314b8db96880acd6976d0682352 (patch) | |
tree | 56cf03706417b4d12b7af9dcbf9f79736dcc0aa4 /sys/modules/hyperv | |
parent | 8ad77cb22cb7c30eca5084b9a887ac3daefbb1e6 (diff) | |
download | FreeBSD-src-3ea95a114bad3314b8db96880acd6976d0682352.zip FreeBSD-src-3ea95a114bad3314b8db96880acd6976d0682352.tar.gz |
MFC 310317
hyperv/ic: Rname cleaned up file.
Sponsored by: Microsoft
Differential Revision: https://reviews.freebsd.org/D8848
Diffstat (limited to 'sys/modules/hyperv')
-rw-r--r-- | sys/modules/hyperv/utilities/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/modules/hyperv/utilities/Makefile b/sys/modules/hyperv/utilities/Makefile index 28125fd..5d39e0b 100644 --- a/sys/modules/hyperv/utilities/Makefile +++ b/sys/modules/hyperv/utilities/Makefile @@ -3,7 +3,12 @@ .PATH: ${.CURDIR}/../../../dev/hyperv/utilities KMOD= hv_utils -SRCS= hv_util.c hv_kvp.c hv_snapshot.c hv_timesync.c hv_shutdown.c hv_heartbeat.c hv_snapshot.c +SRCS= vmbus_ic.c +SRCS+= hv_heartbeat.c +SRCS+= hv_kvp.c +SRCS+= hv_shutdown.c +SRCS+= hv_snapshot.c +SRCS+= hv_timesync.c SRCS+= bus_if.h device_if.h vmbus_if.h CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \ |