7700866e01
the list in order (ordering it on mount). Regularize error messages: these are now all in ALL CAPS, with all hex numbers (not reported in caps) prefixed by 0x. (The non-fsck-specific messages are an exception to this all-caps rule.)
16 lines
502 B
Makefile
16 lines
502 B
Makefile
# $NetBSD: Makefile,v 1.12 2006/04/17 19:05:16 perseant Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= fsck_lfs
|
|
MAN= fsck_lfs.8
|
|
SRCS= bufcache.c dir.c fsutil.c inode.c lfs.c lfs_cksum.c lfs_itimes.c main.c
|
|
SRCS+= pass0.c pass1.c pass2.c pass3.c pass4.c pass5.c pass6.c
|
|
SRCS+= segwrite.c setup.c utilities.c vars.c vnode.c
|
|
FSCK= ${NETBSDSRCDIR}/sbin/fsck
|
|
.PATH: ${NETBSDSRCDIR}/sys/ufs/lfs ${FSCK}
|
|
CPPFLAGS+=-I${.CURDIR} -I${FSCK} # -DVERBOSE_BLOCKMAP
|
|
|
|
.include <bsd.prog.mk>
|