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