freebsd-dev/tools/diag/prtblknos/Makefile
Kirk McKusick 68d7185b64 The fsdb(8) utility uses the fsck_ffs(8) disk I/O interfaces, so
switch from using libufs's bread() to using fsck_ffs's getdatablk()
when importing tools/diag/prtblnos's prtblknos().

Sponsored by: Netflix
2020-09-19 20:06:12 +00:00

20 lines
178 B
Makefile

# $FreeBSD$
BINDIR?= /usr/bin
PROG= prtblknos
MAN=
SRCS= main.c prtblknos.c
LIBADD+=ufs
WARNS?= 3
CFLAGS+=-DPRTBLKNOS
test: ${PROG}
./${PROG} > a
.include <bsd.prog.mk>