mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-14 14:55:41 +00:00
a2c0855654
removed. Go ahead and remove it and struct odirent since it too is unused. # FreeBSD 1.1.5 tapes are still unreadable, but 2.0 and newer work.
17 lines
328 B
Makefile
17 lines
328 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../dump
|
|
|
|
PROG= restore
|
|
LINKS= ${BINDIR}/restore ${BINDIR}/rrestore
|
|
CFLAGS+=-DRRESTORE
|
|
CFLAGS+=-g
|
|
WARNS?= 0
|
|
SRCS= main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
|
|
dumprmt.c
|
|
MAN= restore.8
|
|
MLINKS= restore.8 rrestore.8
|
|
|
|
.include <bsd.prog.mk>
|