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