fea3644f0b
to fsck_ffs, so that in the future 'fsck' can be a wrapper than invokes appropriate filesystem-specific checker programs. For now, the only user-visible change is that the names have changed in the manual page and in error messages; fsck and fsck.8 are now links to fsck_ffs and fsck_ffs.8, until the rest of the transition is complete.
18 lines
428 B
Makefile
18 lines
428 B
Makefile
# $NetBSD: Makefile,v 1.11 1996/04/05 01:45:21 cgd Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
PROG= fsck_ffs
|
|
MAN= fsck_ffs.8
|
|
SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
|
|
pass5.c preen.c setup.c utilities.c ffs_subr.c ffs_tables.c
|
|
.PATH: ${.CURDIR}/../../sys/ufs/ffs
|
|
|
|
.if make(install)
|
|
SUBDIR+= SMM.doc
|
|
.endif
|
|
|
|
LINKS= ${BINDIR}/fsck_ffs ${BINDIR}/fsck
|
|
MLINKS= fsck_ffs.8 fsck.8
|
|
|
|
.include <bsd.prog.mk>
|