[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libtelnet

Annotation of src/lib/libtelnet/Makefile, Revision 1.33

1.4       cgd         1: #      from: @(#)Makefile      8.2 (Berkeley) 12/15/93
1.33    ! mrg         2: #      $NetBSD: Makefile,v 1.32 2011/04/24 19:00:56 elric Exp $
1.28      tls         3:
                      4: USE_FORT?= yes # network protocol library
1.17      itojun      5:
1.29      lukem       6: LIBISPRIVATE=  yes
1.12      thorpej     7:
                      8: .include <bsd.own.mk>
1.13      lukem       9:
                     10: WARNS?=        1
1.8       thorpej    11:
1.11      thorpej    12: LIB=   telnet
                     13: SRCS=  auth.c encrypt.c genget.c getent.c misc.c
1.1       cgd        14:
1.12      thorpej    15: CPPFLAGS+= -DHAS_CGETENT
                     16: CPPFLAGS+= -I${.CURDIR}
                     17:
1.21      dyoung     18: .if (${USE_KERBEROS} != "no")
1.18      itojun     19: SRCS+= enc_des.c
                     20: CPPFLAGS+= -DENCRYPTION -DAUTHENTICATION
                     21: CPPFLAGS+= -DDES_ENCRYPTION
                     22:
1.11      thorpej    23: SRCS+= kerberos5.c
                     24: CPPFLAGS+= -DKRB5
1.12      thorpej    25: .endif
1.17      itojun     26:
1.27      mrg        27: .if ${USE_PAM} != "no" && ${MKCRYPTO} != "no"
1.24      christos   28: SRCS+= sra.c pk.c
1.23      christos   29: CPPFLAGS+= -DSRA
                     30: .endif
                     31:
1.33    ! mrg        32: .if defined(HAVE_GCC) || defined(HAVE_PCC)
1.26      mrg        33: .for f in auth enc_des kerberos5 pk
                     34: COPTS.${f}.c+=  -Wno-pointer-sign
                     35: .endfor
                     36: .endif
                     37:
1.1       cgd        38: .include <bsd.lib.mk>

CVSweb <webmaster@jp.NetBSD.org>