Add module infrastructure for 'if_ex'.

This commit is contained in:
Matthew N. Dodd 2003-03-29 15:41:44 +00:00
parent 20fae1ba5b
commit 79ac92f83c
2 changed files with 13 additions and 0 deletions

View File

@ -167,6 +167,7 @@ SUBDIR+=3dfx \
elink \
em \
ep \
ex \
fe \
fpu \
gnufpu \

12
sys/modules/ex/Makefile Normal file
View File

@ -0,0 +1,12 @@
# $FreeBSD$
#
.PATH: ${.CURDIR}/../../dev/ex
KMOD= if_ex
SRCS= if_ex.c \
if_ex_isa.c isa_if.h \
if_ex_pccard.c card_if.h \
bus_if.h device_if.h
.include <bsd.kmod.mk>