xref: /openbsd/sbin/dump/Makefile (revision 78b63d65)
1#	$OpenBSD: Makefile,v 1.10 2001/04/10 20:52:10 naddy Exp $
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#
11#	DEBUG			use local directory to find ddate and dumpdates
12#	TDEBUG			trace out the process forking
13
14PROG=	dump
15LINKS=	${BINDIR}/dump ${BINDIR}/rdump
16CFLAGS+=-DRDUMP
17SRCS=	itime.c main.c optr.c dumprmt.c tape.c traverse.c
18MAN=	dump.8
19MLINKS+=dump.8 rdump.8
20
21.if (${MACHINE_ARCH} == "sparc")
22CFLAGS+= -O0
23.endif
24
25.include <bsd.prog.mk>
26