NetBSD/libexec/lfs_cleanerd/Makefile
perseant 8abab7cfc8 First stab at file coalescing. When the cleaner detects that it might
be digging itself deeper into a hole, it forks off a subprocess
that locates files with too many discontinuities and rewrites them, if
there is enough room.

Optionally the user can manually coaleasce files by running with "-c".

The recent change to lfs_markv is required for the coalescer to do anything.

All of "digging itself deeper", "too many discontinuities", and "enough room"
need to be better defined.
2002-06-06 00:56:49 +00:00

14 lines
338 B
Makefile

# $NetBSD: Makefile,v 1.8 2002/06/06 00:56:49 perseant Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/5/93
PROG= lfs_cleanerd
CPPFLAGS+=-I${.CURDIR} -DDIAGNOSTIC
MAN= lfs_cleanerd.8
SRCS= cleanerd.c lfs_cksum.c library.c misc.c print.c coalesce.c
LDADD+=-lutil
DPADD+=${LIBUTIL}
.PATH: ${.CURDIR}/../../sys/ufs/lfs
.include <bsd.prog.mk>