Make the fe driver kernel object module to compile in default.

Reviewed by: imp
This commit is contained in:
Takeshi Shibagaki 2001-09-02 06:43:45 +00:00
parent 1068971fe0
commit daee21d1b4
2 changed files with 18 additions and 0 deletions

View File

@ -109,6 +109,7 @@ SUBDIR+=aac \
bktr \
coff \
el \
fe \
fpu \
gnufpu \
ibcs2 \

17
sys/modules/fe/Makefile Normal file
View File

@ -0,0 +1,17 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/fe
KMOD= if_fe
SRCS= if_fe.c if_fe_pccard.c
.if ${MACHINE} == "pc98"
SRCS+= if_fe_cbus.c
CFLAGS+= -DPC98
.else
SRCS+= if_fe_isa.c
.endif
SRCS+= bus_if.h card_if.h device_if.h isa_if.h
.include <bsd.kmod.mk>