Makefile (e5548b5cde2f430b71abb29e251ba8bb2210bf73) | Makefile (7d99ab9fd0cc2c1ce2ecef0ed6d0672c2a50b0cb) |
---|---|
1# $FreeBSD$ 2 | 1# $FreeBSD$ 2 |
3.PATH: ${.CURDIR}/../../../dev/hyperv/vmbus \ 4 ${.CURDIR}/../../../dev/hyperv/utilities | 3.PATH: ${.CURDIR}/../../../contrib/dev/hyperv/vmbus \ 4 ${.CURDIR}/../../../contrib/dev/hyperv/utilities |
5 6KMOD= hv_vmbus 7 8SRCS = hv_channel.c \ 9 hv_channel_mgmt.c \ 10 hv_connection.c \ 11 hv_hv.c \ 12 hv_ring_buffer.c \ 13 hv_vmbus_drv_freebsd.c \ 14 hv_vmbus_priv.h 15 | 5 6KMOD= hv_vmbus 7 8SRCS = hv_channel.c \ 9 hv_channel_mgmt.c \ 10 hv_connection.c \ 11 hv_hv.c \ 12 hv_ring_buffer.c \ 13 hv_vmbus_drv_freebsd.c \ 14 hv_vmbus_priv.h 15 |
16CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \ 17 -I${.CURDIR}/../../../dev/hyperv/vmbus \ 18 -I${.CURDIR}/../../../dev/hyperv/utilities | 16CFLAGS+= -I${.CURDIR}/../../../contrib/dev/hyperv/include \ 17 -I${.CURDIR}/../../../contrib/dev/hyperv/vmbus \ 18 -I${.CURDIR}/../../../contrib/dev/hyperv/utilities \ 19 -I${.CURDIR}/../../../contrib |
19 20.include <bsd.kmod.mk> | 20 21.include <bsd.kmod.mk> |