]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/restore/Makefile
This commit was generated by cvs2svn to compensate for changes in r102729,
[FreeBSD/FreeBSD.git] / sbin / restore / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/5/93
2 # $FreeBSD$
3
4 PROG=   restore
5 LINKS=  ${BINDIR}/restore ${BINDIR}/rrestore
6 CFLAGS+=-DRRESTORE
7 CFLAGS+=-I${.CURDIR}/../../libexec/rlogind
8 WARNS=  0
9 SRCS=   main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
10         dumprmt.c
11 MAN=    restore.8
12 MLINKS+=restore.8 rrestore.8
13 .PATH:  ${.CURDIR}/../dump
14
15 .if defined(MAKE_KERBEROS4) && !defined(NO_OPENSSL) && !defined(NOCRYPT)
16 .PATH:  ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
17 SRCS+=  krcmd.c kcmd.c rcmd_util.c
18 DPADD+= ${LIBKRB} ${LIBCRYPTO}
19 LDADD+= -lkrb -lcrypto
20 CFLAGS+=-DKERBEROS -DHAVE_CONFIG_H \
21         -I${.CURDIR}/../../kerberosIV/include \
22         -I${.CURDIR}/../../crypto/kerberosIV/include \
23         -I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
24         -I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
25 DISTRIBUTION=   krb4
26 .endif
27
28 .include <bsd.prog.mk>