]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/dump/Makefile
md5: Accept "-" as alias for stdin.
[FreeBSD/FreeBSD.git] / sbin / dump / Makefile
1
2 #       dump.h                  header file
3 #       itime.c                 reads /etc/dumpdates
4 #       main.c                  driver
5 #       optr.c                  operator interface
6 #       dumprmt.c               handles remote tape via rmt(8)
7 #       tape.c                  handles the mag tape and opening/closing
8 #       traverse.c              traverses the file system
9 #       unctime.c               undo ctime
10 #
11 #       DEBUG                   use local directory to find ddate and dumpdates
12 #       TDEBUG                  trace out the process forking
13
14 PACKAGE=ufs
15 PROG=   dump
16 CONFS=  /dev/null
17 CONFSGRP=       operator
18 CONFSMODE=      664
19 CONFSNAME_/dev/null=    dumpdates
20 LINKS=  ${BINDIR}/dump ${BINDIR}/rdump
21 CFLAGS+=-DRDUMP
22 SRCS=   itime.c main.c optr.c dumprmt.c tape.c traverse.c unctime.c cache.c
23 MAN=    dump.8
24 LIBADD= ufs
25 MLINKS= dump.8 rdump.8
26 WARNS?= 2
27
28 .include <bsd.prog.mk>