mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-24 16:10:11 +00:00
77667fecbe
create an option that defaults to "no" on all platforms to not build the EISA bits. Discussed on: arch@
18 lines
299 B
Makefile
18 lines
299 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ep
|
|
|
|
KMOD= if_ep
|
|
SRCS= if_ep.c
|
|
SRCS+= if_ep_pccard.c pccarddevs.h card_if.h
|
|
SRCS+= if_ep_isa.c isa_if.h
|
|
.if ${MK_EISA} != "no"
|
|
SRCS+= if_ep_eisa.c eisa_if.h
|
|
.endif
|
|
#SRCS+= if_ep_mca.c
|
|
SRCS+= bus_if.h device_if.h
|
|
|
|
.include <bsd.kmod.mk>
|