fd4c2b74f3
The implementation is in libblockdriver, and works transparently for all block drivers. The new btrace(8) tool can be used to control block tracing; see ``man btrace'' for details.
12 lines
225 B
Makefile
12 lines
225 B
Makefile
# Makefile for libblockdriver
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= blockdriver
|
|
|
|
SRCS= driver.c drvlib.c driver_st.c driver_mt.c mq.c event.c trace.c
|
|
|
|
.if ${USE_STATECTL} != "no"
|
|
CPPFLAGS+= -DUSE_STATECTL
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|