1#	$NetBSD: Makefile,v 1.12 2011/06/22 02:49:43 mrg Exp $
2#	@(#)Makefile	8.1 (Berkeley) 6/5/93
3
4#	lfs_inode.c		LFS filestore-specific routines
5#
6#	DEBUG			use local directory to find ddate and dumpdates
7#	TDEBUG			trace out the process forking
8
9WARNS?=	3	# XXX: sign-compare issues
10
11.include <bsd.own.mk>
12
13PROG=	dump_lfs
14LINKS=	${BINDIR}/dump_lfs ${BINDIR}/rdump_lfs
15CPPFLAGS+=-DRDUMP -I${.CURDIR} -I${NETBSDSRCDIR}/sbin/dump
16CPPFLAGS+=-DDUMP_LFS
17# CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS
18SRCS=	itime.c main.c optr.c dumprmt.c rcache.c snapshot.c tape.c \
19	traverse.c unctime.c ffs_bswap.c lfs_inode.c
20MAN=	dump_lfs.8
21MLINKS+=dump_lfs.8 rdump_lfs.8
22#CFLAGS+=-g
23
24.if ${MACHINE_ARCH} == "m68000"
25COPTS.lfs_inode.c+=	-fno-tree-ter
26.endif
27
28.PATH:  ${NETBSDSRCDIR}/sbin/dump ${NETBSDSRCDIR}/sys/ufs/lfs \
29	${NETBSDSRCDIR}/sys/ufs/ffs
30
31.include <bsd.prog.mk>
32