blob: 78d0173c21aac2bf962b0722ff3a946e656b010e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $FreeBSD$
SYSDIR?=${SRCTOP}/sys
.include "${SYSDIR}/conf/kern.opts.mk"
.PATH: ${SYSDIR}/dev/ep
KMOD= if_ep
SRCS= if_ep.c
.if ${MACHINE_CPUARCH} == "i386"
SRCS+= elink.c
.endif
SRCS+= if_ep_pccard.c pccarddevs.h card_if.h
SRCS+= if_ep_isa.c isa_if.h
SRCS+= bus_if.h device_if.h
.include <bsd.kmod.mk>
|