diff options
author | imp <imp@FreeBSD.org> | 1999-11-18 07:11:16 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1999-11-18 07:11:16 +0000 |
commit | 1d15f21bbcb1f3ad0782f77f65d858f86cb4e448 (patch) | |
tree | e7ba25e302b8ae2b5abb7b4ce52b4ad7d8118485 /sys/modules/cbb | |
parent | 351c3bcd3698d98e1a9c867db42927060e18c0d1 (diff) | |
download | FreeBSD-src-1d15f21bbcb1f3ad0782f77f65d858f86cb4e448.zip FreeBSD-src-1d15f21bbcb1f3ad0782f77f65d858f86cb4e448.tar.gz |
Add modules for cardbus and the cardbus bridge driver. Files needed
to build these to be committed next.
Again, not added to sys/modules/Makefile
Diffstat (limited to 'sys/modules/cbb')
-rw-r--r-- | sys/modules/cbb/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sys/modules/cbb/Makefile b/sys/modules/cbb/Makefile new file mode 100644 index 0000000..3109699 --- /dev/null +++ b/sys/modules/cbb/Makefile @@ -0,0 +1,17 @@ +# $FreeBSD$ + +S = ${.CURDIR}/../.. +.PATH: ${.CURDIR}/../../pci +KMOD= cbb +SRCS= pccbb.c \ + device_if.h bus_if.h +CLEANFILES+= device_if.h bus_if.h +NOMAN= + +device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m + perl $S/kern/makedevops.pl -h $S/kern/device_if.m + +bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m + perl $S/kern/makedevops.pl -h $S/kern/bus_if.m + +.include <bsd.kmod.mk> |