minix/minix/drivers/bus/pci/Makefile
Lionel Sambuc 6e7bb62853 PCI driver cleanup
- Moved to KNF
 - Whitespace cleanup
 - Removed useless static functions prototypes
 - Renamed some file private functions by prepending '__'
 - Renamed some server-specific function by prepending '_'
 - Fixed compilation warning for WARNS= 3

Change-Id: Ie44d35839177d5ee0630cdf576660c852452ab80
2014-11-07 16:20:39 +01:00

11 lines
163 B
Makefile

# Makefile for PCI support
PROG= pci
SRCS= main.c pci.c pci_table.c
DPADD+= ${LIBSYS} ${LIBTIMERS}
LDADD+= -lsys -ltimers
WARNS?= 3
.include <minix.service.mk>