blob: 93bfca906a108d0d89382d19dcba0f79d115c755 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.4 2015/11/16 23:27:08 pooka Exp $
#
RUMPTOP=${TOPRUMP}
.PATH: ${RUMPTOP}/../dev/pci
LIB= rumpdev_pci_if_pcn
COMMENT=PCnet Ethernet device driver
IOCONF= PCI_IF_PCN.ioconf
RUMP_COMPONENT=ioconf
SRCS+= if_pcn.c
CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern
.include "${RUMPTOP}/Makefile.rump"
.include <bsd.lib.mk>
.include <bsd.klinks.mk>
|