freebsd_amp_hwpstate/usr.bin/rsh/Makefile

27 lines
729 B
Makefile
Raw Normal View History

1994-05-27 12:33:43 +00:00
# @(#)Makefile 8.1 (Berkeley) 7/19/93
1998-09-05 00:32:27 +00:00
# $Id: Makefile,v 1.6 1998/08/06 21:39:12 markm Exp $
1994-05-27 12:33:43 +00:00
PROG= rsh
SRCS= rsh.c
CFLAGS+=-Wall
1998-08-06 21:41:13 +00:00
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
SRCS+= krcmd.c kcmd.c rcmd_util.c encrypt.c
CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
-I${.CURDIR}/../rlogin -I${.CURDIR} -I- \
-I${.CURDIR}/../../kerberosIV/include \
-I${.CURDIR}/../../crypto/kerberosIV/include \
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd
1998-09-05 00:32:27 +00:00
DPADD= ${LIBKRB} ${LIBDES} ${LIBCRYPT}
LDADD= -lkrb -ldes -lcrypt
1994-11-20 23:23:28 +00:00
DISTRIBUTION= krb
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
.endif
1994-05-27 12:33:43 +00:00
BINOWN= root
BINMODE=4555
INSTALLFLAGS=-fschg
.include <bsd.prog.mk>