diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-08-23 19:30:43 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-08-23 19:30:43 +0000 |
commit | 212103a299c805c1568811847ef52ad1636d81bd (patch) | |
tree | 56b693382efbfa1cbbc7c185cb7e144228d2c3d2 /bsdfsck/Makefile | |
parent | f7fa9f7edc626c0c42e63f1143cc6ff1d25f80c7 (diff) |
Initial revision
Diffstat (limited to 'bsdfsck/Makefile')
-rw-r--r-- | bsdfsck/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bsdfsck/Makefile b/bsdfsck/Makefile new file mode 100644 index 00000000..b1e25a2f --- /dev/null +++ b/bsdfsck/Makefile @@ -0,0 +1,14 @@ +# from: @(#)Makefile 8.1 (Berkeley) 6/5/93 +# $Id: Makefile,v 1.1 1994/08/23 19:29:26 mib Exp $ + +PROG= fsck +MAN8= fsck.0 +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> |