]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/rshd/Makefile
This commit was generated by cvs2svn to compensate for changes in r52284,
[FreeBSD/FreeBSD.git] / libexec / rshd / Makefile
1 # From: @(#)Makefile    8.1 (Berkeley) 6/4/93
2 # $FreeBSD$
3
4 PROG=   rshd
5 SRCS=   rshd.c
6 MAN8=   rshd.8
7
8 .if defined(NOPAM)
9 CFLAGS+= -DNO_PAM
10 .else
11 #CFLAGS+= -DCRYPT
12 SRCS+=  auth_pam.c
13 DPADD+= ${LIBPAM}
14 LDADD+= ${MINUSLPAM}
15 .endif
16
17 # For login_cap handling
18 CFLAGS+=-DLOGIN_CAP -Wall
19 DPADD+= ${LIBUTIL}
20 LDADD+= -lutil
21
22 .include <bsd.prog.mk>
23
24 .PATH:  ${.CURDIR}/../rlogind