diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 1999-11-25 20:45:49 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 1999-11-25 20:45:49 +0000 |
| commit | dda0e6f54e783851845bbdb86d5a314837e0c59a (patch) | |
| tree | 7657071143a8a094b16b924efb07e92c48ef8057 /sys/modules/wi | |
| parent | 2b71c841f521c575d2a2dcf03927c2d1c1a3facb (diff) | |
Notes
Diffstat (limited to 'sys/modules/wi')
| -rw-r--r-- | sys/modules/wi/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/modules/wi/Makefile b/sys/modules/wi/Makefile new file mode 100644 index 000000000000..dc7b3cbf94c0 --- /dev/null +++ b/sys/modules/wi/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ + +S = ${.CURDIR}/../.. +.PATH: $S/i386/isa +KMOD = if_wi +SRCS = if_wi.c device_if.h bus_if.h +CLEANFILES += device_if.h bus_if.h +CFLAGS += ${DEBUG_FLAGS} + +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> |
