3b9401db6f
process parallel checks in the same way as fsck, since fsck supports pass numbers other than 0, 1 or 2. Without this, quotacheck would ignore file systems with pass numbers > 2. The -l (maxrun) option is now deprecated and can be tuned with pass numbers in /etc/fstab if needed.
12 lines
217 B
Makefile
12 lines
217 B
Makefile
# $FreeBSD$
|
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
PROG= quotacheck
|
|
SRCS= quotacheck.c preen.c fsutil.c utilities.c
|
|
WARNS?= 2
|
|
MAN= quotacheck.8
|
|
|
|
.PATH: ${.CURDIR}/../fsck ${.CURDIR}/../fsck_ffs
|
|
|
|
.include <bsd.prog.mk>
|