NetBSD/lib/libtelnet/Makefile

32 lines
614 B
Makefile
Raw Normal View History

# from: @(#)Makefile 8.2 (Berkeley) 12/15/93
2003-07-16 23:35:34 +04:00
# $NetBSD: Makefile,v 1.17 2003/07/16 19:35:34 itojun Exp $
NOPIC= # defined
NOPROFILE= # defined
NOLINT= # defined
.include <bsd.own.mk>
1993-03-21 12:45:37 +03:00
2001-11-05 18:22:23 +03:00
WARNS?= 1
1993-03-21 12:45:37 +03:00
LIB= telnet
SRCS= auth.c encrypt.c genget.c getent.c misc.c
CPPFLAGS+= -DHAS_CGETENT
CPPFLAGS+= -I${.CURDIR}
.if (${USE_KERBEROS} != "no")
SRCS+= enc_des.c kerberos.c
SRCS+= kerberos5.c
CPPFLAGS+= -DENCRYPTION -DAUTHENTICATION
CPPFLAGS+= -DKRB4 -DDES_ENCRYPTION
CPPFLAGS+= -DKRB5
CPPFLAGS+= -I${DESTDIR}/usr/include/krb5
CPPFLAGS+= -I${DESTDIR}/usr/include/kerberosIV
.endif
1993-03-21 12:45:37 +03:00
2003-07-16 23:35:34 +04:00
libinstall::
1993-03-21 12:45:37 +03:00
.include <bsd.lib.mk>