9 lines
152 B
Makefile
9 lines
152 B
Makefile
|
# Makefile for PCI support
|
||
|
PROG= pci
|
||
|
SRCS= main.c pci.c pci_table.c
|
||
|
|
||
|
DPADD+= ${LIBSYS} ${LIBTIMERS}
|
||
|
LDADD+= -lsys -ltimers
|
||
|
|
||
|
.include <minix.service.mk>
|