Fix make depend, apply a bit of style.

Approved by:	re (marius)
Reviewed by:	grehan
This commit is contained in:
Ulrich Spörlein 2013-09-28 07:04:03 +00:00
parent 791ab37d80
commit 2d0d168606
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255923
5 changed files with 16 additions and 16 deletions

View file

@ -2,12 +2,12 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/netvsc
KMOD = hv_netvsc
KMOD= hv_netvsc
SRCS= hv_net_vsc.c \
hv_netvsc_drv_freebsd.c \
hv_rndis_filter.c
SRCS+= bus_if.h device_if.h
SRCS = hv_net_vsc.c \
hv_netvsc_drv_freebsd.c \
hv_rndis_filter.c
CFLAGS += -I${.CURDIR}/../../../dev/hyperv/netvsc
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/netvsc
.include <bsd.kmod.mk>

View file

@ -2,8 +2,8 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/stordisengage
KMOD= hv_ata_pci_disengage
SRCS= hv_ata_pci_disengage.c ata_if.h
KMOD= hv_ata_pci_disengage
SRCS= hv_ata_pci_disengage.c
SRCS+= ata_if.h bus_if.h device_if.h pci_if.h
.include <bsd.kmod.mk>

View file

@ -2,10 +2,10 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/storvsc
KMOD= hv_storvsc
KMOD= hv_storvsc
SRCS = hv_storvsc_drv_freebsd.c \
hv_vstorage.h
SRCS+= bus_if.h device_if.h opt_cam.h
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
-I${.CURDIR}/../../../dev/hyperv/vmbus \

View file

@ -3,8 +3,8 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/utilities
KMOD= hv_utils
SRCS = hv_util.c
SRCS= hv_util.c
SRCS+= bus_if.h device_if.h
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
-I${.CURDIR}/../../../dev/hyperv/vmbus

View file

@ -3,15 +3,15 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/vmbus \
${.CURDIR}/../../../dev/hyperv/utilities
KMOD= hv_vmbus
SRCS = hv_channel.c \
KMOD= hv_vmbus
SRCS= hv_channel.c \
hv_channel_mgmt.c \
hv_connection.c \
hv_hv.c \
hv_ring_buffer.c \
hv_vmbus_drv_freebsd.c \
hv_vmbus_priv.h
SRCS+= bus_if.h device_if.h
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
-I${.CURDIR}/../../../dev/hyperv/vmbus \