Files
rpi_b/minix/drivers/bus/pci/Makefile
Lionel Sambuc 3641562f44 Use NetBSD PCI ID DB
Change-Id: I3fcbce5983b4e0b45e6cc8fac076947c6a84928d
2014-11-07 16:20:39 +01:00

18 lines
326 B
Makefile

.include <bsd.own.mk>
# Makefile for PCI support
PROG= pci
SRCS= main.c pci.c pci_table.c
# Directly taken from sys/dev/pci
.PATH.c: ${NETBSDSRCDIR}/sys/dev/pci
SRCS+= pci_verbose.c pci_subr.c
CPPFLAGS.pci_subr.c+= -D_PCI_SERVER
DPADD+= ${LIBSYS} ${LIBTIMERS}
LDADD+= -lsys -ltimers
WARNS?= 3
.include <minix.service.mk>