1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Catch these modules up with obrien's recent cleanup commit.

This commit is contained in:
Peter Wemm 2001-03-24 22:33:43 +00:00
parent 7866020b89
commit 63f51d9402
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74761
4 changed files with 22 additions and 18 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>