Home | History | Annotate | Line # | Download | only in lib
Makefile revision 1.119
      1  1.119       tls #	$NetBSD: Makefile,v 1.119 2007/11/05 04:58:52 tls 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.116       tls SUBDIR=	csu libc .WAIT libarch libbsdmalloc libbluetooth libbz2 \
      7  1.105   gdamore 	libcompat libcrypt \
      8  1.108      tron 	libcurses libevent libform libintl libkvm libl libm \
      9  1.104   thorpej 	libmenu libossaudio libpcap libpci libpmc libposix libprop libpthread \
     10  1.115       tls 	libpthread_dbg libpuffs libresolv librmt librpcsvc librt libsdp \
     11  1.109     pooka 	libterm libusbhid libutil libwrap liby libz
     12   1.60   thorpej 
     13   1.76   thorpej .if (${MKSKEY} != "no")
     14   1.76   thorpej SUBDIR+= libskey
     15   1.76   thorpej .endif
     16   1.76   thorpej 
     17   1.61   thorpej # XXX Crypto bits must be done before libtelnet.
     18   1.61   thorpej 
     19   1.62   thorpej .if (${MKCRYPTO} != "no")
     20   1.86    itojun # OpenSSL libraries.
     21   1.89     lukem SUBDIR+= libcrypto libdes
     22   1.17   thorpej 
     23   1.64    itojun .if (${MKCRYPTO_IDEA} != "no")
     24   1.64    itojun SUBDIR+= libcrypto_idea
     25   1.64    itojun .endif	# MKCRYPTO_IDEA != no
     26   1.78    itojun 
     27   1.78    itojun .if (${MKCRYPTO_MDC2} != "no")
     28   1.78    itojun SUBDIR+= libcrypto_mdc2
     29   1.78    itojun .endif	# MKCRYPTO_MDC2 != no
     30   1.64    itojun 
     31   1.64    itojun .if (${MKCRYPTO_RC5} != "no")
     32   1.64    itojun SUBDIR+= libcrypto_rc5
     33   1.64    itojun .endif	# MKCRYPTO_RC5 != no
     34   1.64    itojun 
     35   1.62   thorpej .endif	# MKCRYPTO != no
     36   1.76   thorpej 
     37   1.76   thorpej .if (${MKKERBEROS} != "no")
     38   1.76   thorpej # Heimdal Kerberos 5 libraries
     39  1.114       mrg SUBDIR+= .WAIT libroken libvers libcom_err .WAIT libasn1
     40   1.76   thorpej 
     41   1.88    dyoung .endif	# MKKERBEROS != no
     42   1.54   thorpej 
     43   1.30     mikel SUBDIR+=	libtelnet
     44   1.53    itojun 
     45   1.53    itojun # IPv6/IPsec
     46   1.53    itojun SUBDIR+=	libipsec
     47   1.70    itojun 
     48   1.75  tshiozak # I18N modules
     49   1.75  tshiozak SUBDIR+=	i18n_module
     50    1.1       cgd 
     51   1.89     lukem 
     52   1.89     lukem #
     53   1.89     lukem # Libraries that depend upon any listed previously
     54   1.93     lukem # (and those that depend upon these [and ...])
     55   1.89     lukem #
     56   1.97  christos #==================== 1st library dependency barrier ====================
     57   1.97  christos SUBDIR+=	.WAIT
     58   1.97  christos 
     59  1.117     joerg SUBDIR+=	libarchive	# depends on libbz2 and libz
     60  1.117     joerg 
     61   1.97  christos SUBDIR+=	libedit		# depends on libterm
     62   1.97  christos 
     63  1.108      tron SUBDIR+=	libmagic	# depends on libz
     64  1.108      tron 
     65   1.98  christos SUBDIR+=	libradius	# depends on libcrypto - only if ${MKCRYPTO}
     66   1.98  christos 
     67  1.106       mrg .if (${MKISCSI} != "no")
     68   1.99       agc SUBDIR+=	libiscsi	# depends on libpthread
     69  1.106       mrg .endif
     70   1.99       agc 
     71   1.89     lukem .if (${MKCRYPTO} != "no")
     72   1.97  christos SUBDIR+=	libssl		# depends on libcrypto
     73   1.97  christos SUBDIR+=	libssh		# depends on libcrypto
     74   1.89     lukem .endif
     75   1.97  christos 
     76   1.89     lukem .if (${MKKERBEROS} != "no")
     77   1.97  christos SUBDIR+=	libkrb5		# depends on libcrypto and more
     78   1.89     lukem .endif
     79   1.97  christos 
     80  1.113     pooka .if (${MKPUFFS} != "no")
     81  1.113     pooka SUBDIR+=	librefuse	# depends on libpuffs
     82  1.113     pooka .endif
     83  1.113     pooka 
     84  1.119       tls # XXX These bind9/ISC libraries should depend on each other but the
     85  1.119       tls # XXX dependency ordering requires considerable investigation.
     86  1.119       tls # XXX Please preserve the order below so we know the order ISC links
     87  1.119       tls # XXX them in in their Makefiles.
     88  1.119       tls SUBDIR+= libbind9 libdns liblwres libisccfg libisccc libisc # dep. libpthread
     89  1.119       tls 
     90   1.97  christos #==================== 2nd library dependency barrier ====================
     91   1.97  christos SUBDIR+=	.WAIT
     92   1.97  christos 
     93  1.100  christos .if (${MKKERBEROS} != "no")
     94  1.100  christos # Heimdal Kerberos 5 libraries depending on libkrb5 and more
     95  1.101    bouyer SUBDIR+=	libgssapi libhdb .WAIT libkadm5srv libkadm5clnt libkafs libsl libss
     96  1.100  christos .endif
     97  1.100  christos 
     98   1.94        he .if (${MKPAM} != "no")
     99  1.112    bouyer SUBDIR+=	.WAIT libpam		# depends on libkrb5, libkafs and more
    100   1.94        he .endif
    101   1.92     lukem 
    102    1.1       cgd .include <bsd.subdir.mk>
    103