Corrected msgs.c that it does function now, thanks to mte@hpy.fi.
[unix-history] / usr.bin / rsh / Makefile
CommitLineData
15637ed4
RG
1# @(#)Makefile 5.6 (Berkeley) 9/27/90
2
3PROG= rsh
4SRCS= rsh.c
5BINOWN= root
6BINMODE=4555
7.PATH: ${.CURDIR}/../rlogin
8
957a7fd8
NW
9.if exists(/usr/lib/libcrypt.a)
10#CFLAGS+=-DCRYPT -DKERBEROS
11DPADD+= ${LIBCRYPT} #${LIBKRB}
12LDADD+= -lcrypt #-lkrb
13.endif
14
15637ed4 15.include <bsd.prog.mk>