1 1.1.1.2 mycroft # @(#)Makefile 8.1 (Berkeley) 6/5/93 2 1.1 cgd 3 1.1 cgd # dump.h header file 4 1.1.1.2 mycroft # itime.c reads /etc/dumpdates 5 1.1.1.2 mycroft # main.c driver 6 1.1.1.2 mycroft # optr.c operator interface 7 1.1.1.2 mycroft # dumprmt.c handles remote tape via rmt(8) 8 1.1.1.2 mycroft # tape.c handles the mag tape and opening/closing 9 1.1.1.2 mycroft # traverse.c traverses the file system 10 1.1 cgd # unctime.c undo ctime 11 1.1 cgd # 12 1.1 cgd # DEBUG use local directory to find ddate and dumpdates 13 1.1 cgd # TDEBUG trace out the process forking 14 1.1 cgd 15 1.1 cgd PROG= dump 16 1.1.1.2 mycroft LINKS= ${BINDIR}/dump ${BINDIR}/rdump 17 1.1.1.2 mycroft CFLAGS+=-DRDUMP 18 1.1.1.2 mycroft SRCS= itime.c main.c optr.c dumprmt.c tape.c traverse.c unctime.c 19 1.1.1.2 mycroft BINOWN= root 20 1.1 cgd BINGRP= tty 21 1.1.1.2 mycroft BINMODE=6555 22 1.1.1.2 mycroft MAN8= dump.0 23 1.1.1.2 mycroft MLINKS+=dump.8 rdump.8 24 1.1 cgd 25 1.1 cgd .include <bsd.prog.mk> 26