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 | |
| parent | 2b71c841f521c575d2a2dcf03927c2d1c1a3facb (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/wi/Makefile | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 2f14760b3421..bc97db650b1f 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -11,7 +11,7 @@ SUBDIR+=usb ugen uhid ukbd ulpt ums umodem umass # XXX some of these can move to the general case when de-i386'ed .if ${MACHINE_ARCH} == "i386" SUBDIR+=amr bktr coff fpu gnufpu ibcs2 linux mlx ncp nwfs splash streams \ - svr4 syscons vesa vinum + svr4 syscons vesa vinum wi .endif .include <bsd.subdir.mk> 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> |
