24c8f29cf4
and fixing the format string in sbin/fsdb/fsdbutil.c instead. Note the remark "Work around a problem with format string warnings and ntohs macros" was actually incorrect. The DIP(dp, di_nlink) macro invocation actually returned an int, due to its ternary expression, even though the di_nlink members of struct ufs1_dinode and struct ufs2_dinode are both defined as int16_t. MFC after: 2 weeks
17 lines
471 B
Makefile
17 lines
471 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 1995/10/08 23:08:36 thorpej Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PROG= fsdb
|
|
MAN= fsdb.8
|
|
SRCS= fsdb.c fsdbutil.c \
|
|
dir.c ea.c fsutil.c inode.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
|
|
pass5.c setup.c utilities.c ffs_subr.c ffs_tables.c
|
|
CFLAGS+= -I${.CURDIR}/../fsck_ffs
|
|
WARNS?= 2
|
|
LDADD= -ledit -ltermcap
|
|
DPADD= ${LIBEDIT} ${LIBTERMCAP}
|
|
.PATH: ${.CURDIR}/../fsck_ffs ${.CURDIR}/../../sys/ufs/ffs
|
|
|
|
.include <bsd.prog.mk>
|