1 1.14 dbj # $NetBSD: Makefile,v 1.14 2002/09/28 20:11:07 dbj Exp $ 2 1.1 thorpej # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 1.1 thorpej 4 1.13 lukem .include <bsd.own.mk> 5 1.13 lukem 6 1.1 thorpej PROG= fsdb 7 1.1 thorpej MAN= fsdb.8 8 1.11 bouyer SRCS= fsdb.c fsdbutil.c 9 1.11 bouyer SRCS+= dir.c inode.c pass1.c pass1b.c pass2.c pass3.c pass4.c \ 10 1.4 christos pass5.c setup.c utilities.c 11 1.14 dbj SRCS+= ffs_bswap.c ffs_subr.c ffs_tables.c ffs_appleufs.c 12 1.11 bouyer SRCS+= fsutil.c 13 1.4 christos 14 1.13 lukem FSCK= ${NETBSDSRCDIR}/sbin/fsck 15 1.13 lukem FSCK_FFS=${NETBSDSRCDIR}/sbin/fsck_ffs 16 1.8 christos CPPFLAGS+= -I${FSCK} -I${FSCK_FFS} 17 1.13 lukem .PATH: ${FSCK} ${FSCK_FFS} ${NETBSDSRCDIR}/sys/ufs/ffs 18 1.8 christos 19 1.12 bouyer LDADD+= -ledit -ltermcap 20 1.12 bouyer DPADD+= ${LIBEDIT} ${LIBTERMCAP} 21 1.1 thorpej 22 1.1 thorpej .include <bsd.prog.mk> 23