aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ed/Makefile
blob: 23dda90b4832af7474843f9683b0276af75c7589 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $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_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h

.include <bsd.kmod.mk>