0bc2abddc8
Split heartbeat, shutdown and timesync out of utils code and name them properly. Submitted by: Jun Su <junsu microsoft com> Reviewed by: adrian, sephe, Hongjiang Zhang <honzhan microsoft com> MFC after: 1 week Sponsored by: Microsoft OSTC Differential Revision: https://reviews.freebsd.org/D5216
13 lines
291 B
Makefile
13 lines
291 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../dev/hyperv/utilities
|
|
|
|
KMOD= hv_utils
|
|
SRCS= hv_util.c hv_kvp.c hv_timesync.c hv_shutdown.c hv_heartbeat.c
|
|
SRCS+= bus_if.h device_if.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
|
|
-I${.CURDIR}/../../../dev/hyperv/vmbus
|
|
|
|
.include <bsd.kmod.mk>
|