Home | History | Annotate | Line # | Download | only in rshd
Makefile revision 1.17
      1  1.17  christos #	$NetBSD: Makefile,v 1.17 2005/03/27 21:00:58 christos Exp $
      2   1.4       cgd #	from: @(#)Makefile	8.1 (Berkeley) 6/4/93
      3   1.1       cgd 
      4  1.14     lukem .include <bsd.own.mk>
      5  1.14     lukem 
      6  1.17  christos WARNS=	3
      7   1.1       cgd PROG=	rshd
      8   1.6       cgd MAN=	rshd.8
      9  1.13     lukem 
     10  1.13     lukem DPADD+=	${LIBUTIL}
     11  1.13     lukem LDADD+=	-lutil
     12   1.9       mjl 
     13  1.10    itojun CPPFLAGS+=-DLOGIN_CAP
     14  1.11    itojun 
     15  1.14     lukem .if (${USE_INET6} != "no")
     16  1.11    itojun CPPFLAGS+=-DINET6
     17  1.14     lukem .endif
     18   1.1       cgd 
     19  1.15  christos .if (${USE_PAM} != "no")
     20  1.15  christos CPPFLAGS+=-DUSE_PAM
     21  1.16        he DPADD+= ${LIBPAM} ${PAM_STATIC_DPADD}
     22  1.16        he LDADD+= -lpam ${PAM_STATIC_LDADD}
     23  1.15  christos .endif
     24  1.15  christos 
     25   1.1       cgd .include <bsd.prog.mk>
     26