Home | History | Annotate | Line # | Download | only in libtelnet
Makefile revision 1.13
      1   1.4      cgd #	from: @(#)Makefile	8.2 (Berkeley) 12/15/93
      2  1.13    lukem #	$NetBSD: Makefile,v 1.13 2001/11/05 15:23:31 lukem Exp $
      3  1.12  thorpej 
      4  1.12  thorpej .include <bsd.own.mk>
      5  1.13    lukem 
      6  1.13    lukem WARNS?=	1
      7   1.8  thorpej 
      8  1.11  thorpej LIB=	telnet
      9  1.11  thorpej SRCS=	auth.c encrypt.c genget.c getent.c misc.c
     10   1.1      cgd 
     11  1.12  thorpej CPPFLAGS+= -DHAS_CGETENT
     12  1.12  thorpej CPPFLAGS+= -I${.CURDIR}
     13  1.12  thorpej 
     14  1.12  thorpej .if (${MKKERBEROS} != "no")
     15  1.11  thorpej SRCS+=	enc_des.c kerberos.c
     16  1.11  thorpej SRCS+=	kerberos5.c
     17  1.10  thorpej 
     18  1.11  thorpej CPPFLAGS+= -DENCRYPTION -DAUTHENTICATION
     19  1.11  thorpej CPPFLAGS+= -DKRB4 -DDES_ENCRYPTION
     20  1.11  thorpej CPPFLAGS+= -DKRB5
     21  1.11  thorpej CPPFLAGS+= -I${DESTDIR}/usr/include/krb5
     22  1.10  thorpej CPPFLAGS+= -I${DESTDIR}/usr/include/kerberosIV
     23  1.12  thorpej .endif
     24   1.1      cgd 
     25   1.1      cgd .include <bsd.lib.mk>
     26