diff options
author | jhay <jhay@FreeBSD.org> | 1998-02-05 14:31:05 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 1998-02-05 14:31:05 +0000 |
commit | c3aba9f5d238a0431a36ee328a25d9b476515ebf (patch) | |
tree | 5415ab896c3dfbe8a4c0e9e2f8d2cfbb744f12ae /sbin/fsdb/Makefile | |
parent | 954e6de43d483843040681db19e7c2f432439bdd (diff) | |
download | FreeBSD-src-c3aba9f5d238a0431a36ee328a25d9b476515ebf.zip FreeBSD-src-c3aba9f5d238a0431a36ee328a25d9b476515ebf.tar.gz |
fsdb and fsck use the ffs code which needs opt_diagnostic.h.
Diffstat (limited to 'sbin/fsdb/Makefile')
-rw-r--r-- | sbin/fsdb/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sbin/fsdb/Makefile b/sbin/fsdb/Makefile index 5fa4d66..f69b375 100644 --- a/sbin/fsdb/Makefile +++ b/sbin/fsdb/Makefile @@ -1,15 +1,20 @@ # $NetBSD: Makefile,v 1.1.1.1 1995/10/08 23:08:36 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 6/5/93 -# $Id$ +# $Id: Makefile,v 1.6 1997/02/22 14:32:24 peter Exp $ PROG= fsdb MAN8= fsdb.8 SRCS= fsdb.c fsdbutil.c \ dir.c inode.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 -CFLAGS+= -I${.CURDIR}/../fsck + pass5.c preen.c setup.c utilities.c ffs_subr.c ffs_tables.c \ + opt_diagnostic.h +CFLAGS+= -I${.CURDIR}/../fsck -I${.OBJDIR} +CLEANFILES+=opt_diagnostic.h LDADD+= -ledit -ltermcap DPADD+= ${LIBEDIT} ${LIBTERMCAP} .PATH: ${.CURDIR}/../fsck ${.CURDIR}/../../sys/ufs/ffs +opt_diagnostic.h: + touch opt_diagnostic.h + .include <bsd.prog.mk> |