Home | History | Annotate | Line # | Download | only in restore
Makefile revision 1.1.1.2
      1 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      2 
      3 PROG=	restore
      4 LINKS=	${BINDIR}/restore ${BINDIR}/rrestore
      5 CFLAGS+=-DRRESTORE
      6 SRCS=	main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
      7 	dumprmt.c
      8 BINOWN=	root
      9 BINGRP=	tty
     10 BINMODE=6555
     11 MAN8=	restore.0
     12 MLINKS+=restore.8 rrestore.8
     13 .PATH:	${.CURDIR}/../dump
     14 
     15 all: ${PROG} ${MAN8}
     16 
     17 .include <bsd.prog.mk>
     18