5332f2e5d8
mount_ifs: repocopy of sbin/mount, with most of the intelligence ripped out and "ufs" replaced with "ifs" in the right places. It will only mount a single filesystem, rather than the -t <type> magic that our real mount does. fsck_ifs: repocopy of sbin/fsck_ffs, but the directory structure stuff (pass2 and some refcount checks) has been #ifdef'ed out. src/sbin/Makefile: Build these two utilities There is probably cruft code left in both which can be removed at a later date, especially in mount_ifs, but I trust that people will not try mount_ifs -a .. Note: there are no man pages installed for these two commands as I haven't actually written them yet.
12 lines
281 B
Makefile
12 lines
281 B
Makefile
# $FreeBSD$
|
|
# @(#)Makefile 8.2 (Berkeley) 4/27/95
|
|
|
|
PROG= fsck_ifs
|
|
NOMAN= true
|
|
SRCS= dir.c fsutil.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
|
|
pass5.c setup.c utilities.c ffs_subr.c ffs_tables.c
|
|
CFLAGS+=-W
|
|
.PATH: ${.CURDIR}/../../sys/ufs/ffs
|
|
|
|
.include <bsd.prog.mk>
|