e8d2d2f6b6
- add files needed for acpi, ahci, fbd, vfs to libminc - remove "-lc" from their respective makefiles - remove setenv from libminc (requires initialization)
12 lines
254 B
Makefile
12 lines
254 B
Makefile
# Makefile for the Advanced Host Controller Interface driver (AHCI)
|
|
PROG= ahci
|
|
SRCS= ahci.c
|
|
|
|
DPADD+= ${LIBBLOCKDRIVER} ${LIBSYS} ${LIBTIMERS} ${LIBMTHREAD}
|
|
LDADD+= -lblockdriver -lsys -ltimers -lmthread
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /sbin
|
|
|
|
.include <minix.service.mk>
|