blob: c3dbb353c11408fb03a5acbcfa2794b38253ca8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.2 2002/08/19 09:41:33 lukem Exp $
.include <bsd.own.mk>
LIB= pci
SRCS= pci_bus.c pci_device.c pci_subr.c
CPPFLAGS+=-DPCIVERBOSE
.PATH.c: ${NETBSDSRCDIR}/sys/dev/pci
MAN= pci.3
MLINKS= pci.3 pcibus_conf_read.3 \
pci.3 pcibus_conf_write.3 \
pci.3 pcidev_conf_read.3 \
pci.3 pcidev_conf_write.3 \
pci.3 pci_findvendor.3 \
pci.3 pci_devinfo.3 \
pci.3 pci_conf_print.3
INCSDIR= /usr/include
INCS= pci.h
.include <bsd.lib.mk>
|