5d2f3e4908
* Extend the lfs library from fsck_lfs(8) so that it can be used with a not-yet-existent LFS. Make newfs_lfs(8) use this library, so it can create LFSs whose Ifile is larger than one segment. * Make newfs_lfs(8) use strsuftoi64() for its arguments, a la newfs(8). * Make fsck_lfs(8) respect the "file system is clean" flag. * Don't let fsck_lfs(8) think it has dirty blocks when invoked with the -n flag.
18 lines
504 B
Makefile
18 lines
504 B
Makefile
# $NetBSD: Makefile,v 1.3 2005/02/26 05:45:54 perseant Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/18/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= newfs_lfs
|
|
SRCS= dkcksum.c make_lfs.c lfs_cksum.c misc.c newfs.c
|
|
SRCS+= bufcache.c vnode.c lfs.c segwrite.c
|
|
MAN= newfs_lfs.8
|
|
.PATH: ${NETBSDSRCDIR}/sys/ufs/lfs ${NETBSDSRCDIR}/sbin/disklabel ${NETBSDSRCDIR}/sbin/fsck_lfs
|
|
|
|
FSCK_LFS= ${NETBSDSRCDIR}/sbin/fsck_lfs
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
CPPFLAGS+=-I${FSCK_LFS} # -DNDEBUG # -DVERBOSE_BLOCKMAP
|
|
|
|
.include <bsd.prog.mk>
|