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