67fb10f30c
It exposes I/O resources to user space, so that programs can peek and poke at the hardware. It does not itself have knowledge about the hardware device it attaches to. Sponsored by: Juniper Networks, Inc.
21 lines
240 B
Makefile
21 lines
240 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/proto
|
|
|
|
KMOD= proto
|
|
SRCS= \
|
|
proto_bus_pci.c \
|
|
proto_core.c
|
|
|
|
SRCS+= \
|
|
bus_if.h \
|
|
device_if.h \
|
|
pci_if.h \
|
|
|
|
MFILES= \
|
|
dev/pci/pci_if.m \
|
|
kern/bus_if.m \
|
|
kern/device_if.m
|
|
|
|
.include <bsd.kmod.mk>
|