4336716b84
utilities which use bits of fsck_ffs - namely quotacheck and fsdb. In depth, utilities.c contains blockcheck() which is needed by both, but also a slew of routines which require bits of the FFS code to be compiled in. This breaks the fs-specific and non-fs-specific code up into two files (well, blockcheck() is the only routine in utilities.c, that'll change later) which makes building fsck_ffs, quotacheck and fsdb work yet again. (You won't find commits to fsdb and quotacheck here before I haven't committed the post-fsck-wrappers version of them yet.)
14 lines
381 B
Makefile
14 lines
381 B
Makefile
# $FreeBSD$
|
|
# @(#)Makefile 8.2 (Berkeley) 4/27/95
|
|
|
|
PROG= fsck_ffs
|
|
LINKS+= ${BINDIR}/fsck_ffs ${BINDIR}/fsck_ufs
|
|
LINKS+= ${BINDIR}/fsck_ffs ${BINDIR}/fsck_4.2bsd
|
|
MAN8= fsck_ffs.8
|
|
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>
|