freebsd-dev/sys/modules/ed/Makefile
Ian Dowse c5f4a9409b Add a change I forgot when adding ED_NO_MIIBUS. This will likely
be backed out with the rest of ED_NO_MIIBUS when the general miibus
code makes proper use of newbus.
2001-09-30 01:59:11 +00:00

19 lines
307 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/ed
KMOD= if_ed
SRCS= if_ed.c if_ed_pccard.c if_ed_pci.c
.if ${MACHINE} == "pc98"
SRCS+= if_ed_cbus.c
CFLAGS+= -DPC98
.else
SRCS+= if_ed_isa.c
.endif
SRCS+= opt_ed.h opt_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h \
miibus_if.h
.include <bsd.kmod.mk>