Skip to content

Commit

Permalink
Fix make depend, apply a bit of style.
Browse files Browse the repository at this point in the history
Approved by:	re (marius)
Reviewed by:	grehan
  • Loading branch information
uqs committed Sep 28, 2013
1 parent 2ad5be8 commit bc13676
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions sys/modules/hyperv/netvsc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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>
6 changes: 3 additions & 3 deletions sys/modules/hyperv/stordisengage/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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>
4 changes: 2 additions & 2 deletions sys/modules/hyperv/storvsc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions sys/modules/hyperv/utilities/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions sys/modules/hyperv/vmbus/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit bc13676

Please sign in to comment.