diff options
author | obrien <obrien@FreeBSD.org> | 1999-09-20 06:11:48 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-09-20 06:11:48 +0000 |
commit | 0b061e57c0ac385183b23eef6214ba486b782785 (patch) | |
tree | 25cfc7f3590028918f4108bcd0ef251d6aa49df7 /sys/modules/rl/Makefile | |
parent | d65af66bfe8923c6345f7415d0086674f3b7d590 (diff) | |
download | FreeBSD-src-0b061e57c0ac385183b23eef6214ba486b782785.zip FreeBSD-src-0b061e57c0ac385183b23eef6214ba486b782785.tar.gz |
Change the name of the installed KLM to contain a leading "if_".
Except for miibus which is now installed as miibus.ko.
Discussed by: msmith, peter, and wpaul
Diffstat (limited to 'sys/modules/rl/Makefile')
-rw-r--r-- | sys/modules/rl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/modules/rl/Makefile b/sys/modules/rl/Makefile index a7c836b..0ea1813 100644 --- a/sys/modules/rl/Makefile +++ b/sys/modules/rl/Makefile @@ -2,11 +2,12 @@ S = ${.CURDIR}/../.. .PATH: $S/pci -KMOD = rl +KMOD = if_rl SRCS = if_rl.c rl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h SRCS += miibus_if.h CLEANFILES += rl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h CLEANFILES += miibus_if.h +KMODDEPS = miibus CFLAGS += ${DEBUG_FLAGS} |