860ca8fd85
At the times, restore(8) and rrestore(8) were the different utilities. rrestore(8) was installed setuid `root', while restore(8) with usual ownership and privileges. Later on, on August 28, 1991 (what a coincidence!), rrestore(8) code was merged with restore(8). The setgid `tty' bit then was accidentally put.
28 lines
806 B
Makefile
28 lines
806 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PROG= restore
|
|
LINKS= ${BINDIR}/restore ${BINDIR}/rrestore
|
|
CFLAGS+=-DRRESTORE
|
|
CFLAGS+=-I${.CURDIR}/../../libexec/rlogind
|
|
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
|
|
|
|
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
|
|
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
|
SRCS+= krcmd.c kcmd.c rcmd_util.c
|
|
DPADD+= ${LIBKRB} ${LIBCRYPTO}
|
|
LDADD+= -lkrb -lcrypto
|
|
CFLAGS+=-DKERBEROS -DHAVE_CONFIG_H \
|
|
-I${.CURDIR}/../../kerberosIV/include \
|
|
-I${.CURDIR}/../../crypto/kerberosIV/include \
|
|
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
|
|
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
|
|
DISTRIBUTION= krb4
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|