freebsd-dev/sys/modules/proto/Makefile
Marcel Moolenaar 67fb10f30c Add proto(4): A driver for prototyping and diagnostics.
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.
2014-04-28 17:58:40 +00:00

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>