Adjust the fxp module to use the correct directory path, and add a

dependency on miibus.
This commit is contained in:
Jonathan Lemon 2001-03-12 21:44:19 +00:00
parent 68311a93fb
commit 7cbbb1afee

View File

@ -1,8 +1,9 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../pci
.PATH: ${.CURDIR}/../../dev/fxp
KMOD= if_fxp
SRCS= if_fxp.c opt_bdg.h device_if.h bus_if.h pci_if.h
SRCS= if_fxp.c opt_bdg.h device_if.h bus_if.h pci_if.h miibus_if.h
KMODDEPS = miibus
.include <bsd.kmod.mk>