freebsd-nq/libexec/rshd/Makefile
Ruslan Ermilov 6f1214d918 Removed broken PAM support from rshd(8) and rlogind(8). rshd does
not allocate a pty(4) so it is not suitable at all for interactive
PAM modules.  rlogind calls login(1) which is already PAM enabled.

Approved by:	markm
2000-10-12 07:18:20 +00:00

19 lines
255 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $FreeBSD$
PROG= rshd
SRCS= rshd.c
MAN8= rshd.8
#CFLAGS+= -DCRYPT
# For login_cap handling
CFLAGS+=-DLOGIN_CAP -Wall
DPADD+= ${LIBUTIL}
LDADD+= -lutil
# IPv6 support
CFLAGS+= -DINET6
.include <bsd.prog.mk>