xref: /original-bsd/sbin/dump/Makefile (revision e59fb703)
1#	@(#)Makefile	5.14 (Berkeley) 09/23/91
2
3#	dump.h			header file
4#	dumpitime.c		reads /etc/dumpdates
5#	dumpmain.c		driver
6#	dumpoptr.c		operator interface
7#	dumprmt.c		handles remote tape via rmt(8)
8#	dumptape.c		handles the mag tape and opening/closing
9#	dumptraverse.c		traverses the file system
10#	unctime.c		undo ctime
11#
12#	DEBUG			use local directory to find ddate and dumpdates
13#	TDEBUG			trace out the process forking
14
15PROG=	dump
16LINKS=	${BINDIR}/dump ${BINDIR}/rdump
17CFLAGS+=-DRDUMP
18SRCS=	dumpitime.c dumpmain.c dumpoptr.c dumprmt.c dumptape.c \
19	dumptraverse.c unctime.c
20BINOWN=	root
21BINGRP=	tty
22BINMODE=6555
23MAN8=	dump.0
24MLINKS+=dump.8 rdump.8
25
26all: dump
27
28.include <bsd.prog.mk>
29