freebsd-dev/sbin/restore/Makefile

28 lines
806 B
Makefile
Raw Normal View History

# @(#)Makefile 8.1 (Berkeley) 6/5/93
1999-08-28 00:22:10 +00:00
# $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
1998-08-06 21:41:13 +00:00
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
1997-09-28 08:43:40 +00:00
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
SRCS+= krcmd.c kcmd.c rcmd_util.c
2000-02-24 21:01:54 +00:00
DPADD+= ${LIBKRB} ${LIBCRYPTO}
LDADD+= -lkrb -lcrypto
1997-09-28 08:43:40 +00:00
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
1999-09-20 06:21:51 +00:00
DISTRIBUTION= krb4
.endif
.include <bsd.prog.mk>