diff options
| author | Warner Losh <imp@FreeBSD.org> | 1999-11-18 06:54:19 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 1999-11-18 06:54:19 +0000 |
| commit | 9e2ba5d1867f148da3f7b821a5df8f66bbba5ab3 (patch) | |
| tree | f3d4db753253a3091fe50c0177cc62a921fa659f /sys/modules/pcic | |
| parent | e79f2d5bfcf7860bf8c999a5b257a6463ea9ce86 (diff) | |
Notes
Diffstat (limited to 'sys/modules/pcic')
| -rw-r--r-- | sys/modules/pcic/Makefile | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/sys/modules/pcic/Makefile b/sys/modules/pcic/Makefile index 3cf397460710..88e313fc61d8 100644 --- a/sys/modules/pcic/Makefile +++ b/sys/modules/pcic/Makefile @@ -1,8 +1,20 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../pccard +S = ${.CURDIR}/../.. +.PATH: ${.CURDIR}/../../dev/pcic KMOD= pcic -SRCS= pcic.c +SRCS= i82365.c i82365_isa.c i82365_isasubr.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> |
