aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>1999-11-18 07:02:18 +0000
committerWarner Losh <imp@FreeBSD.org>1999-11-18 07:02:18 +0000
commitd4f495ae992b0a73ca97cb5cb11561b01d79668e (patch)
tree4c59e543823755771068b8a617df465aa9d96d7e /sys
parentcdacc6ab428503d2306433b709eedaf4a3549933 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/modules/pccard/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/pccard/Makefile b/sys/modules/pccard/Makefile
new file mode 100644
index 000000000000..4ccb6d9b0156
--- /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 <bsd.kmod.mk>