diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-01-16 18:39:15 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-01-16 18:39:15 +0000 |
commit | a5ba41bacad7192081dab6463f8d9602893579d0 (patch) | |
tree | 66e5c9119eb0b1ee9338ed9bd4b7828c6b45f4e0 | |
parent | b939d163e9dd98ecb71a2e6acdbf0fece4f41a4c (diff) | |
download | FreeBSD-ports-a5ba41bacad7192081dab6463f8d9602893579d0.zip FreeBSD-ports-a5ba41bacad7192081dab6463f8d9602893579d0.tar.gz |
Slightly simplify Makefiles used to build the kld's (w/o functionality change).
-rw-r--r-- | audio/aureal-kmod/files/patch-10_Makefile | 9 | ||||
-rw-r--r-- | audio/aureal-kmod/files/patch-20_Makefile | 9 | ||||
-rw-r--r-- | audio/aureal-kmod/files/patch-30_Makefile | 9 | ||||
-rw-r--r-- | audio/aureal-kmod/files/patch-Makefile.inc | 10 |
4 files changed, 18 insertions, 19 deletions
diff --git a/audio/aureal-kmod/files/patch-10_Makefile b/audio/aureal-kmod/files/patch-10_Makefile index 550fcef..fe8250a 100644 --- a/audio/aureal-kmod/files/patch-10_Makefile +++ b/audio/aureal-kmod/files/patch-10_Makefile @@ -1,10 +1,9 @@ $FreeBSD$ ---- 10/Makefile.orig Tue Jan 16 10:43:21 2001 -+++ 10/Makefile Tue Jan 16 10:43:50 2001 -@@ -0,0 +1,4 @@ -+KMOD = snd_au8810 -+SRCS = ${WRKSRC}/asp10.o +--- 10/Makefile.orig Tue Jan 16 15:45:02 2001 ++++ 10/Makefile Tue Jan 16 15:47:38 2001 +@@ -0,0 +1,3 @@ ++MODEL = 10 + +.include <bsd.kmod.mk> diff --git a/audio/aureal-kmod/files/patch-20_Makefile b/audio/aureal-kmod/files/patch-20_Makefile index 1d0794d..c2b7dd1 100644 --- a/audio/aureal-kmod/files/patch-20_Makefile +++ b/audio/aureal-kmod/files/patch-20_Makefile @@ -1,10 +1,9 @@ $FreeBSD$ ---- 20/Makefile.orig Tue Jan 16 10:43:21 2001 -+++ 20/Makefile Tue Jan 16 10:43:57 2001 -@@ -0,0 +1,4 @@ -+KMOD = snd_au8820 -+SRCS = ${WRKSRC}/asp20.o +--- 20/Makefile.orig Tue Jan 16 15:45:02 2001 ++++ 20/Makefile Tue Jan 16 15:47:46 2001 +@@ -0,0 +1,3 @@ ++MODEL = 20 + +.include <bsd.kmod.mk> diff --git a/audio/aureal-kmod/files/patch-30_Makefile b/audio/aureal-kmod/files/patch-30_Makefile index abd6157..8ef5b81 100644 --- a/audio/aureal-kmod/files/patch-30_Makefile +++ b/audio/aureal-kmod/files/patch-30_Makefile @@ -1,10 +1,9 @@ $FreeBSD$ ---- 30/Makefile.orig Tue Jan 16 10:43:21 2001 -+++ 30/Makefile Tue Jan 16 10:44:04 2001 -@@ -0,0 +1,4 @@ -+KMOD = snd_au8830 -+SRCS = ${WRKSRC}/asp30.o +--- 30/Makefile.orig Tue Jan 16 15:45:03 2001 ++++ 30/Makefile Tue Jan 16 15:47:53 2001 +@@ -0,0 +1,3 @@ ++MODEL = 30 + +.include <bsd.kmod.mk> diff --git a/audio/aureal-kmod/files/patch-Makefile.inc b/audio/aureal-kmod/files/patch-Makefile.inc index 4eb4560..c09f270 100644 --- a/audio/aureal-kmod/files/patch-Makefile.inc +++ b/audio/aureal-kmod/files/patch-Makefile.inc @@ -1,15 +1,17 @@ $FreeBSD$ ---- Makefile.inc.orig Mon Jan 15 18:44:49 2001 -+++ Makefile.inc Mon Jan 15 18:44:49 2001 -@@ -0,0 +1,9 @@ +--- Makefile.inc.orig Tue Jan 16 20:33:37 2001 ++++ Makefile.inc Tue Jan 16 20:35:06 2001 +@@ -0,0 +1,11 @@ +.PATH: /sys/dev/sound/pci ${WRKSRC} + +KMODDIR = ${PREFIX}/lib/au88x0 -+SRCS += device_if.h bus_if.h isa_if.h pci_if.h ++KMOD = snd_au88${MODEL} +SRCS += au88x0.c ++SRCS += device_if.h bus_if.h isa_if.h pci_if.h +.if ${OSVERSION} > 500000 +SRCS += ac97_if.h channel_if.h feeder_if.h mixer_if.h +.endif ++OBJS = ${WRKSRC}/asp${MODEL}.o +CFLAGS += -I${WRKSRC} |