d3009da8ad
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
18 lines
157 B
Makefile
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>
|