e8d2d2f6b6
- add files needed for acpi, ahci, fbd, vfs to libminc - remove "-lc" from their respective makefiles - remove setenv from libminc (requires initialization)
17 lines
287 B
Makefile
17 lines
287 B
Makefile
# Makefile for the Faulty Block Device (FBD)
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= fbd
|
|
SRCS= fbd.c rule.c action.c
|
|
|
|
DPADD+= ${LIBBLOCKDRIVER} ${LIBSYS}
|
|
LDADD+= -lblockdriver -lsys
|
|
CPPFLAGS+= -DDEBUG=0
|
|
|
|
# The FBD driver requires NetBSD libc.
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.service.mk>
|