Makefile revision 57453
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/libexec/rlogind/Makefile 57453 2000-02-24 21:18:08Z markm $
3
4PROG=	rlogind
5SRCS=	rlogind.c
6MAN8=	rlogind.8
7DPADD=	${LIBUTIL}
8LDADD=	-lutil
9CFLAGS+= -Wall -DNO_PAM -DINET6
10
11.if defined(NOPAM)
12CFLAGS+= -DNO_PAM
13.else
14SRCS+=	auth_pam.c
15DPADD+= ${LIBPAM}
16LDADD+= ${MINUSLPAM}
17.endif
18
19.include <bsd.prog.mk>
20