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