Deleted Added
full compact
Makefile (74815) Makefile (82556)
1# @(#)Makefile 8.1 (Berkeley) 6/5/93
1# @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/restore/Makefile 74815 2001-03-26 14:33:27Z ru $
2# $FreeBSD: head/sbin/restore/Makefile 82556 2001-08-30 09:18:55Z ru $
3
4PROG= restore
5LINKS= ${BINDIR}/restore ${BINDIR}/rrestore
6CFLAGS+=-DRRESTORE
7CFLAGS+=-I${.CURDIR}/../../libexec/rlogind
8SRCS= main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
9 dumprmt.c
3
4PROG= restore
5LINKS= ${BINDIR}/restore ${BINDIR}/rrestore
6CFLAGS+=-DRRESTORE
7CFLAGS+=-I${.CURDIR}/../../libexec/rlogind
8SRCS= main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
9 dumprmt.c
10BINGRP= tty
11BINMODE=2555
12MAN= restore.8
13MLINKS+=restore.8 rrestore.8
14.PATH: ${.CURDIR}/../dump
15
16.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
17.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
18SRCS+= krcmd.c kcmd.c rcmd_util.c
19DPADD+= ${LIBKRB} ${LIBCRYPTO}
20LDADD+= -lkrb -lcrypto
21CFLAGS+=-DKERBEROS -DHAVE_CONFIG_H \
22 -I${.CURDIR}/../../kerberosIV/include \
23 -I${.CURDIR}/../../crypto/kerberosIV/include \
24 -I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
25 -I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
26DISTRIBUTION= krb4
27.endif
28
29.include <bsd.prog.mk>
10MAN= restore.8
11MLINKS+=restore.8 rrestore.8
12.PATH: ${.CURDIR}/../dump
13
14.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
15.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
16SRCS+= krcmd.c kcmd.c rcmd_util.c
17DPADD+= ${LIBKRB} ${LIBCRYPTO}
18LDADD+= -lkrb -lcrypto
19CFLAGS+=-DKERBEROS -DHAVE_CONFIG_H \
20 -I${.CURDIR}/../../kerberosIV/include \
21 -I${.CURDIR}/../../crypto/kerberosIV/include \
22 -I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
23 -I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
24DISTRIBUTION= krb4
25.endif
26
27.include <bsd.prog.mk>