mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Catch these modules up with obrien's recent cleanup commit.
This commit is contained in:
parent
7866020b89
commit
63f51d9402
4 changed files with 22 additions and 18 deletions
|
|
@ -1,8 +1,9 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
KMOD = snd_cmi
|
||||
SRCS = device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS += cmi.c
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
|
||||
KMOD= snd_cmi
|
||||
SRCS= device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS+= cmi.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
KMOD = snd_cs4281
|
||||
SRCS = device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS += cs4281.c
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
|
||||
KMOD= snd_cs4281
|
||||
SRCS= device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS+= cs4281.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
# $FreeBSD$
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
KMOD = snd_maestro3
|
||||
SRCS = device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS += maestro3.c
|
||||
CFLAGS += -Wall
|
||||
|
||||
CFLAGS += -DM3_DEBUG_LEVEL=-1
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
|
||||
KMOD= snd_maestro3
|
||||
SRCS= device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS+= maestro3.c
|
||||
|
||||
CFLAGS+= -Wall -DM3_DEBUG_LEVEL=-1
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
KMOD = snd_vibes
|
||||
SRCS = device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS += vibes.c
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/pci
|
||||
|
||||
KMOD= snd_vibes
|
||||
SRCS= device_if.h bus_if.h isa_if.h pci_if.h
|
||||
SRCS+= vibes.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue