LUNA-II (68040 based LUNA) support
[unix-history] / usr / src / sbin / dump / Makefile
CommitLineData
103cc639 1# @(#)Makefile 5.16 (Berkeley) %G%
f15273bc 2
5e19f2d7 3# dump.h header file
ff27dabc
KM
4# itime.c reads /etc/dumpdates
5# main.c driver
6# optr.c operator interface
d04d51f8 7# dumprmt.c handles remote tape via rmt(8)
ff27dabc
KM
8# tape.c handles the mag tape and opening/closing
9# traverse.c traverses the file system
5e19f2d7
BJ
10# unctime.c undo ctime
11#
12# DEBUG use local directory to find ddate and dumpdates
13# TDEBUG trace out the process forking
5e19f2d7 14
f15273bc 15PROG= dump
d04d51f8
KM
16LINKS= ${BINDIR}/dump ${BINDIR}/rdump
17CFLAGS+=-DRDUMP
ff27dabc 18SRCS= itime.c main.c optr.c dumprmt.c tape.c traverse.c unctime.c
d04d51f8 19BINOWN= root
f15273bc 20BINGRP= tty
d04d51f8
KM
21BINMODE=6555
22MAN8= dump.0
b98f4c16 23MLINKS+=dump.8 rdump.8
5e19f2d7 24
f15273bc 25.include <bsd.prog.mk>