816bb96145
little hacking by me. This isn't strictly identical to his 920312 release -- I've hacked it a bit -- but since we are taking over change control it doesn't matter much.
19 lines
415 B
Makefile
19 lines
415 B
Makefile
## $NetBSD: Makefile.inc,v 1.1.1.1 1997/03/14 02:40:33 perry Exp $
|
|
|
|
SRCS += netif_small.c
|
|
.if (${USE_NETIF} == "3c509")
|
|
SRCS += 3c509.c elink3.c
|
|
.endif
|
|
.if (${USE_NETIF} == "3c590")
|
|
SRCS += 3c590.c elink3.c
|
|
.endif
|
|
.if (${USE_NETIF} == "wd80x3")
|
|
SRCS += wd80x3.c
|
|
.endif
|
|
.if (${USE_NETIF} == "pcnet_pci")
|
|
SRCS += pcnet_pci.c am7990.c
|
|
.endif
|
|
.if (${USE_NETIF} == "pcnet_isapnp")
|
|
SRCS += pcnet_isapnp.c am7990.c
|
|
.endif
|