Home | History | Annotate | Line # | Download | only in libtelnet
Makefile revision 1.4
      1  1.4  cgd #	from: @(#)Makefile	8.2 (Berkeley) 12/15/93
      2  1.4  cgd #	$Id: Makefile,v 1.4 1994/02/25 02:52:45 cgd Exp $
      3  1.1  cgd 
      4  1.1  cgd LIB=	telnet
      5  1.4  cgd SRCS=	auth.c encrypt.c genget.c getent.c misc.c
      6  1.4  cgd #SRCS+=	kerberos.c enc_des.c
      7  1.4  cgd #SRCS+=	kerberos5.c
      8  1.4  cgd #CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DHAS_CGETENT
      9  1.4  cgd #CFLAGS+= -DKRB4 -DDES_ENCRYPTION -I/usr/include/kerberosIV
     10  1.4  cgd 
     11  1.4  cgd # These are the sources that have encryption stuff in them.
     12  1.4  cgd CRYPT_SRC= auth.c enc-proto.h enc_des.c encrypt.c
     13  1.4  cgd CRYPT_SRC+= encrypt.h kerberos.c kerberos5.c krb4encpwd.c
     14  1.4  cgd CRYPT_SRC+= misc.c spx.c Makefile
     15  1.4  cgd NOCRYPT_DIR=${.CURDIR}/Nocrypt
     16  1.1  cgd 
     17  1.1  cgd .include <bsd.lib.mk>
     18  1.1  cgd 
     19  1.4  cgd nocrypt:
     20  1.4  cgd 	@echo "Encryption code already removed."
     21