1# @(#)Makefile 8.1 (Berkeley) 6/5/93 2# $FreeBSD$ 3 4.PATH: ${.CURDIR:H}/dump 5 6PACKAGE=ufs 7PROG= restore 8LINKS= ${BINDIR}/restore ${BINDIR}/rrestore 9MAN= restore.8 10MLINKS= restore.8 rrestore.8 11SRCS= main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \ 12 dumprmt.c 13WARNS?= 2 14CFLAGS+= -DRRESTORE -D_ACL_PRIVATE 15 16.include <bsd.prog.mk> 17