Makefile revision 144097
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/restore/Makefile 144097 2005-03-25 06:57:50Z imp $
3
4.PATH: ${.CURDIR}/../dump
5
6PROG=	restore
7LINKS=	${BINDIR}/restore ${BINDIR}/rrestore
8CFLAGS+=-DRRESTORE
9CFLAGS+=-g
10WARNS?=	0
11SRCS=	main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
12	dumprmt.c
13MAN=	restore.8
14MLINKS=	restore.8 rrestore.8
15
16.include <bsd.prog.mk>
17