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