xref: /netbsd-src/libexec/rlogind/Makefile (revision 500db002748d9818288e46e10f026a2b09548086)
1#	$NetBSD: Makefile,v 1.12 2009/03/16 02:24:56 lukem Exp $
2#	from: @(#)Makefile	8.1 (Berkeley) 6/4/93
3
4.include <bsd.own.mk>
5
6PROG=	rlogind
7MAN=	rlogind.8
8DPADD=	${LIBUTIL}
9LDADD=	-lutil
10
11CPPFLAGS+=	-DSUPPORT_UTMP -DSUPPORT_UTMPX
12
13.if (${USE_INET6} != "no")
14CPPFLAGS+=	-DINET6
15.endif
16
17.include <bsd.prog.mk>
18