Makefile revision 1.3
1#	$NetBSD: Makefile,v 1.3 2002/08/02 12:29:36 scw 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
9PROG=	dump_lfs
10LINKS=	${BINDIR}/dump_lfs ${BINDIR}/rdump_lfs
11CPPFLAGS+=-DRDUMP -I${.CURDIR} -I${.CURDIR}/../dump
12CPPFLAGS+=-DDUMP_LFS
13CPPFLAGS+=-I${.CURDIR}/../../usr.bin/who -DSUPPORT_UTMPX -DSUPPORT_UTMP
14# CPPFLAGS+= -DDEBUG -DTDEBUG -DFDEBUG -DWRITEDEBUG -DSTATS -DDIAGNOSTICS
15SRCS=	itime.c main.c optr.c dumprmt.c rcache.c tape.c traverse.c unctime.c \
16	ffs_bswap.c lfs_inode.c utmpentry.c
17BINGRP=	tty
18BINMODE=2555
19MAN=	dump_lfs.8
20MLINKS+=dump_lfs.8 rdump_lfs.8
21CFLAGS+=-g
22
23.PATH:  ${.CURDIR}/../dump ${.CURDIR}/../../sys/ufs/lfs ${.CURDIR}/../../sys/ufs/ffs ${.CURDIR}/../../usr.bin/who
24
25.include <bsd.prog.mk>
26