diff options
author | ru <ru@FreeBSD.org> | 2003-05-01 21:10:37 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-05-01 21:10:37 +0000 |
commit | 8716bb50e311ba9636291e5d83d84d05f13fd13b (patch) | |
tree | 80c3c84e6d63329d55e93b2d9171539b865ff7ce /sbin | |
parent | ea4d816aa1ef041f9d21361a8315a21cf19fb8d5 (diff) | |
download | FreeBSD-src-8716bb50e311ba9636291e5d83d84d05f13fd13b.zip FreeBSD-src-8716bb50e311ba9636291e5d83d84d05f13fd13b.tar.gz |
Style.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/restore/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/restore/Makefile b/sbin/restore/Makefile index 7813606..712bf64 100644 --- a/sbin/restore/Makefile +++ b/sbin/restore/Makefile @@ -1,6 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ +.PATH: ${.CURDIR}/../dump + PROG= restore LINKS= ${BINDIR}/restore ${BINDIR}/rrestore CFLAGS+=-DRRESTORE @@ -9,7 +11,6 @@ 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 -.PATH: ${.CURDIR}/../dump +MLINKS= restore.8 rrestore.8 .include <bsd.prog.mk> |