12 lines
200 B
Makefile
12 lines
200 B
Makefile
# Makefile for PCI support
|
|
PROG= pci
|
|
SRCS= main.c pci.c pci_table.c
|
|
|
|
DPADD+= ${LIBDRIVER} ${LIBSYS} ${LIBTIMERS}
|
|
LDADD+= -ldriver -lsys -ltimers
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.service.mk>
|