From d4f495ae992b0a73ca97cb5cb11561b01d79668e Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 18 Nov 1999 07:02:18 +0000 Subject: Newcard's pccard module. It compiles, but doesn't work. This should make development easier and push the ability of newbus to load busses to the test. Not added to sys/modules/Makefile because it isn't ready to break the nightly snapshots for alpha yet :-). NOTE: This is only for NEWCARD. The old pccard stuff will not build as a loadable module. --- sys/modules/pccard/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sys/modules/pccard/Makefile diff --git a/sys/modules/pccard/Makefile b/sys/modules/pccard/Makefile new file mode 100644 index 0000000000000..4ccb6d9b01562 --- /dev/null +++ b/sys/modules/pccard/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +S = ${.CURDIR}/../.. +.PATH: ${.CURDIR}/../../dev/pccard +KMOD= pccard +SRCS= pccard.c pccard_cis.c pccard_cis_quirks.c \ + device_if.h bus_if.h isa_if.h +CLEANFILES+= device_if.h bus_if.h isa_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 + +isa_if.h: $S/kern/makedevops.pl $S/isa/isa_if.m + perl $S/kern/makedevops.pl -h $S/isa/isa_if.m + +.include -- cgit v1.3