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