1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-24 16:10:11 +00:00
freebsd/sys/modules/ep/Makefile
Warner Losh 77667fecbe Don't build EISA by default anymore. Remove from i386 GENERIC and
create an option that defaults to "no" on all platforms to not build
the EISA bits.

Discussed on: arch@
2014-04-18 16:53:06 +00:00

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>