1
2#	dump.h			header file
3#	itime.c			reads /etc/dumpdates
4#	main.c			driver
5#	optr.c			operator interface
6#	dumprmt.c		handles remote tape via rmt(8)
7#	tape.c			handles the mag tape and opening/closing
8#	traverse.c		traverses the file system
9#	unctime.c		undo ctime
10#
11#	DEBUG			use local directory to find ddate and dumpdates
12#	TDEBUG			trace out the process forking
13
14PACKAGE=ufs
15PROG=	dump
16CONFS=	/dev/null
17CONFSGRP=	operator
18CONFSMODE=	664
19CONFSNAME_/dev/null=	dumpdates
20LINKS=	${BINDIR}/dump ${BINDIR}/rdump
21CFLAGS+=-DRDUMP
22SRCS=	itime.c main.c optr.c dumprmt.c tape.c traverse.c unctime.c cache.c
23MAN=	dump.8
24LIBADD=	ufs
25MLINKS=	dump.8 rdump.8
26WARNS?=	2
27
28.include <bsd.prog.mk>
29