mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 14:48:57 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
14 lines
294 B
Makefile
14 lines
294 B
Makefile
.PATH: ${.CURDIR:H}/dump
|
|
|
|
PACKAGE=ufs
|
|
PROG= restore
|
|
LINKS= ${BINDIR}/restore ${BINDIR}/rrestore
|
|
MAN= restore.8
|
|
MLINKS= restore.8 rrestore.8
|
|
SRCS= main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
|
|
dumprmt.c
|
|
WARNS?= 2
|
|
CFLAGS+= -DRRESTORE -D_ACL_PRIVATE
|
|
|
|
.include <bsd.prog.mk>
|