Makefile revision 70711
1# $FreeBSD: head/sys/modules/ep/Makefile 70711 2001-01-06 14:00:42Z obrien $
2
3.PATH: ${.CURDIR}/../../dev/ep
4.PATH: ${.CURDIR}/../../i386/isa
5
6KMOD=	if_ep
7SRCS=	if_ep.c if_ep_pccard.c elink.c
8SRCS+=	if_ep_isa.c
9#SRCS+=	if_ep_eisa.c
10#SRCS+=	if_ep_mca.c
11SRCS+=	opt_bdg.h bus_if.h card_if.h device_if.h isa_if.h pci_if.h
12
13.if ${MACHINE} == "pc98"
14CFLAGS+= -DPC98
15.endif
16
17.include <bsd.kmod.mk>
18