Home | History | Annotate | Line # | Download | only in lib
Makefile revision 1.94
      1  1.94        he #	$NetBSD: Makefile,v 1.94 2005/01/10 00:20:21 he Exp $
      2   1.8   mycroft #	from: @(#)Makefile	5.25.1.1 (Berkeley) 5/7/91
      3  1.21       cgd 
      4  1.62   thorpej .include <bsd.own.mk>
      5  1.62   thorpej 
      6  1.89     lukem SUBDIR=	csu libc .WAIT libarch libbsdmalloc libbz2 libcompat libcrypt \
      7  1.85    provos 	libcurses libedit libevent libform libintl libkvm libl libm libmagic \
      8  1.91  christos 	libmenu libossaudio libpcap libpci libpmc libposix libpthread \
      9  1.85    provos 	libpthread_dbg libresolv librmt librpcsvc librt libterm libusbhid \
     10  1.92     lukem 	libutil libwrap liby libz
     11  1.60   thorpej 
     12  1.76   thorpej .if (${MKSKEY} != "no")
     13  1.76   thorpej SUBDIR+= libskey
     14  1.76   thorpej .endif
     15  1.76   thorpej 
     16  1.61   thorpej # XXX Crypto bits must be done before libtelnet.
     17  1.61   thorpej 
     18  1.62   thorpej .if (${MKCRYPTO} != "no")
     19  1.86    itojun # OpenSSL libraries.
     20  1.89     lukem SUBDIR+= libcrypto libdes
     21  1.17   thorpej 
     22  1.64    itojun .if (${MKCRYPTO_IDEA} != "no")
     23  1.64    itojun SUBDIR+= libcrypto_idea
     24  1.64    itojun .endif	# MKCRYPTO_IDEA != no
     25  1.78    itojun 
     26  1.78    itojun .if (${MKCRYPTO_MDC2} != "no")
     27  1.78    itojun SUBDIR+= libcrypto_mdc2
     28  1.78    itojun .endif	# MKCRYPTO_MDC2 != no
     29  1.64    itojun 
     30  1.64    itojun .if (${MKCRYPTO_RC5} != "no")
     31  1.64    itojun SUBDIR+= libcrypto_rc5
     32  1.64    itojun .endif	# MKCRYPTO_RC5 != no
     33  1.64    itojun 
     34  1.62   thorpej .endif	# MKCRYPTO != no
     35  1.76   thorpej 
     36  1.76   thorpej .if (${MKKERBEROS} != "no")
     37  1.76   thorpej # Heimdal Kerberos 5 libraries
     38  1.89     lukem SUBDIR+= libroken libvers libcom_err libsl libss libasn1 libhdb \
     39  1.87    itojun 	 libkadm5srv libkadm5clnt libgssapi libkafs
     40  1.76   thorpej 
     41  1.87    itojun .if (${MKKERBEROS4} != "no")
     42  1.76   thorpej # KTH Kerberos 4 libraries
     43  1.89     lukem SUBDIR+= libkdb libkadm libkstream
     44  1.87    itojun .endif	# MKKERBEROS4 != no
     45  1.88    dyoung .endif	# MKKERBEROS != no
     46  1.54   thorpej 
     47  1.30     mikel SUBDIR+=	libtelnet
     48  1.53    itojun 
     49  1.53    itojun # IPv6/IPsec
     50  1.53    itojun SUBDIR+=	libipsec
     51  1.70    itojun 
     52  1.75  tshiozak # I18N modules
     53  1.75  tshiozak SUBDIR+=	i18n_module
     54   1.1       cgd 
     55  1.89     lukem 
     56  1.89     lukem #
     57  1.89     lukem # Libraries that depend upon any listed previously
     58  1.93     lukem # (and those that depend upon these [and ...])
     59  1.89     lukem #
     60  1.89     lukem SUBDIR+=	.WAIT
     61  1.89     lukem SUBDIR+=	libcdk 
     62  1.89     lukem .if (${MKCRYPTO} != "no")
     63  1.89     lukem SUBDIR+=	libssl
     64  1.89     lukem .endif
     65  1.89     lukem .if (${MKKERBEROS} != "no")
     66  1.89     lukem SUBDIR+=	libkrb5
     67  1.89     lukem .endif
     68  1.89     lukem .if (${MKKERBEROS4} != "no")
     69  1.89     lukem SUBDIR+=	libkrb
     70  1.89     lukem .endif
     71  1.89     lukem 
     72  1.93     lukem .if (${MKCRYPTO} != "no")
     73  1.93     lukem SUBDIR+=	.WAIT libssh
     74  1.93     lukem .endif
     75  1.93     lukem 
     76  1.94        he .if (${MKPAM} != "no")
     77  1.92     lukem SUBDIR+=	.WAIT libpam
     78  1.94        he .endif
     79  1.92     lukem 
     80   1.1       cgd .include <bsd.subdir.mk>
     81