freebsd-dev/tools/diag/prtblknos/Makefile
Kirk McKusick d3009da8ad Fix incorrect output for a file consisting of a single full-size
block followed by a discontiguous fragment.

Add checks for unallocated inodes and inodes with unknown mode
types.

Cleanup variable declarations by changing from type `int' to types
like ufs_lbn_t, ufs2_daddr_t, etc.

Reported by: bde
2018-04-19 22:43:55 +00:00

18 lines
157 B
Makefile

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