diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /sbin/fsck_ffs/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'sbin/fsck_ffs/Makefile')
-rw-r--r-- | sbin/fsck_ffs/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sbin/fsck_ffs/Makefile b/sbin/fsck_ffs/Makefile new file mode 100644 index 00000000000..6b9a9d086fb --- /dev/null +++ b/sbin/fsck_ffs/Makefile @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.10 1995/03/18 14:55:39 cgd Exp $ +# @(#)Makefile 8.1 (Berkeley) 6/5/93 + +PROG= fsck +MAN= fsck.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 + +.include <bsd.prog.mk> |