Home | History | Annotate | Line # | Download | only in restore
      1 #	$NetBSD: Makefile,v 1.28 2023/06/03 09:09:13 lukem Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	restore
      7 LINKS=	${BINDIR}/restore ${BINDIR}/rrestore
      8 CPPFLAGS+=-DRRESTORE
      9 SRCS=	main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
     10 	dumprmt.c
     11 MAN=	restore.8
     12 MLINKS+=restore.8 rrestore.8
     13 .PATH:	${NETBSDSRCDIR}/sbin/dump
     14 
     15 COPTS.interactive.c+=	${CC_WNO_STRINGOP_TRUNCATION}
     16 COPTS.dirs.c+=		${CC_WNO_STRINGOP_TRUNCATION}
     17 
     18 .include <bsd.prog.mk>
     19