xref: /dflybsd-src/sbin/restore/Makefile (revision 2458c6f4cb6284cf8c259e0e5bf12ff74ff41952)
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: src/sbin/restore/Makefile,v 1.13.2.3 2002/07/17 19:08:22 ru Exp $
3
4PROG=	restore
5LINKS=	${BINDIR}/restore ${BINDIR}/rrestore
6CFLAGS+=-DRRESTORE -DNTREC_LONG
7SRCS=	main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
8	dumprmt.c
9MAN=	restore.8
10MLINKS+=restore.8 rrestore.8
11.PATH:	${.CURDIR}/../dump
12
13.include <bsd.prog.mk>
14