Home | History | Annotate | Line # | Download | only in libpci
Makefile revision 1.1
      1  1.1  thorpej #	$NetBSD: Makefile,v 1.1 2001/09/13 22:52:19 thorpej Exp $
      2  1.1  thorpej 
      3  1.1  thorpej LIB=	pci
      4  1.1  thorpej 
      5  1.1  thorpej SRCS=	pci_bus.c pci_device.c pci_subr.c
      6  1.1  thorpej 
      7  1.1  thorpej CPPFLAGS+=-DPCIVERBOSE
      8  1.1  thorpej 
      9  1.1  thorpej .PATH.c: ${.CURDIR}/../../sys/dev/pci
     10  1.1  thorpej 
     11  1.1  thorpej MAN=	pci.3
     12  1.1  thorpej 
     13  1.1  thorpej MLINKS=	pci.3 pcibus_conf_read.3 \
     14  1.1  thorpej 	pci.3 pcibus_conf_write.3 \
     15  1.1  thorpej 	pci.3 pcidev_conf_read.3 \
     16  1.1  thorpej 	pci.3 pcidev_conf_write.3 \
     17  1.1  thorpej 	pci.3 pci_findvendor.3 \
     18  1.1  thorpej 	pci.3 pci_devinfo.3 \
     19  1.1  thorpej 	pci.3 pci_conf_print.3
     20  1.1  thorpej 
     21  1.1  thorpej INCSDIR= /usr/include
     22  1.1  thorpej INCS=	pci.h
     23  1.1  thorpej 
     24  1.1  thorpej .include <bsd.lib.mk>
     25