1# @(#)Makefile 8.1 (Berkeley) 6/5/93 2 3# dump.h header file 4# itime.c reads /etc/dumpdates 5# main.c driver 6# optr.c operator interface 7# dumprmt.c handles remote tape via rmt(8) 8# tape.c handles the mag tape and opening/closing 9# traverse.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 15PACKAGE=ufs 16PROG= dump 17CONFS= /dev/null 18CONFSGRP= operator 19CONFSMODE= 664 20CONFSNAME_/dev/null= dumpdates 21LINKS= ${BINDIR}/dump ${BINDIR}/rdump 22CFLAGS+=-DRDUMP 23SRCS= itime.c main.c optr.c dumprmt.c tape.c traverse.c unctime.c cache.c 24MAN= dump.8 25LIBADD= ufs 26MLINKS= dump.8 rdump.8 27WARNS?= 2 28 29.include <bsd.prog.mk> 30