18 lines
326 B
Makefile
18 lines
326 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ep
|
|
.PATH: ${.CURDIR}/../../i386/isa
|
|
|
|
KMOD= if_ep
|
|
SRCS= if_ep.c if_ep_pccard.c elink.c
|
|
SRCS+= if_ep_isa.c
|
|
#SRCS+= if_ep_eisa.c
|
|
#SRCS+= if_ep_mca.c
|
|
SRCS+= opt_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|