Home | History | Annotate | Line # | Download | only in lib
Makefile revision 1.118
      1  1.118       tls #	$NetBSD: Makefile,v 1.118 2007/11/04 23:28:17 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.118       tls # XXX These bind9/ISC libraries should depend on each other but the
     14  1.118       tls # XXX dependency ordering requires considerable investigation.
     15  1.118       tls # XXX Please preserve the order below so we know the order ISC links
     16  1.118       tls # XXX them in in their Makefiles.
     17  1.118       tls SUBDIR+= libbind9 libdns liblwres libisccfg libisccc libisc
     18  1.118       tls 
     19   1.76   thorpej .if (${MKSKEY} != "no")
     20   1.76   thorpej SUBDIR+= libskey
     21   1.76   thorpej .endif
     22   1.76   thorpej 
     23   1.61   thorpej # XXX Crypto bits must be done before libtelnet.
     24   1.61   thorpej 
     25   1.62   thorpej .if (${MKCRYPTO} != "no")
     26   1.86    itojun # OpenSSL libraries.
     27   1.89     lukem SUBDIR+= libcrypto libdes
     28   1.17   thorpej 
     29   1.64    itojun .if (${MKCRYPTO_IDEA} != "no")
     30   1.64    itojun SUBDIR+= libcrypto_idea
     31   1.64    itojun .endif	# MKCRYPTO_IDEA != no
     32   1.78    itojun 
     33   1.78    itojun .if (${MKCRYPTO_MDC2} != "no")
     34   1.78    itojun SUBDIR+= libcrypto_mdc2
     35   1.78    itojun .endif	# MKCRYPTO_MDC2 != no
     36   1.64    itojun 
     37   1.64    itojun .if (${MKCRYPTO_RC5} != "no")
     38   1.64    itojun SUBDIR+= libcrypto_rc5
     39   1.64    itojun .endif	# MKCRYPTO_RC5 != no
     40   1.64    itojun 
     41   1.62   thorpej .endif	# MKCRYPTO != no
     42   1.76   thorpej 
     43   1.76   thorpej .if (${MKKERBEROS} != "no")
     44   1.76   thorpej # Heimdal Kerberos 5 libraries
     45  1.114       mrg SUBDIR+= .WAIT libroken libvers libcom_err .WAIT libasn1
     46   1.76   thorpej 
     47   1.88    dyoung .endif	# MKKERBEROS != no
     48   1.54   thorpej 
     49   1.30     mikel SUBDIR+=	libtelnet
     50   1.53    itojun 
     51   1.53    itojun # IPv6/IPsec
     52   1.53    itojun SUBDIR+=	libipsec
     53   1.70    itojun 
     54   1.75  tshiozak # I18N modules
     55   1.75  tshiozak SUBDIR+=	i18n_module
     56    1.1       cgd 
     57   1.89     lukem 
     58   1.89     lukem #
     59   1.89     lukem # Libraries that depend upon any listed previously
     60   1.93     lukem # (and those that depend upon these [and ...])
     61   1.89     lukem #
     62   1.97  christos #==================== 1st library dependency barrier ====================
     63   1.97  christos SUBDIR+=	.WAIT
     64   1.97  christos 
     65  1.117     joerg SUBDIR+=	libarchive	# depends on libbz2 and libz
     66  1.117     joerg 
     67   1.97  christos SUBDIR+=	libedit		# depends on libterm
     68   1.97  christos 
     69  1.108      tron SUBDIR+=	libmagic	# depends on libz
     70  1.108      tron 
     71   1.98  christos SUBDIR+=	libradius	# depends on libcrypto - only if ${MKCRYPTO}
     72   1.98  christos 
     73  1.106       mrg .if (${MKISCSI} != "no")
     74   1.99       agc SUBDIR+=	libiscsi	# depends on libpthread
     75  1.106       mrg .endif
     76   1.99       agc 
     77   1.89     lukem .if (${MKCRYPTO} != "no")
     78   1.97  christos SUBDIR+=	libssl		# depends on libcrypto
     79   1.97  christos SUBDIR+=	libssh		# depends on libcrypto
     80   1.89     lukem .endif
     81   1.97  christos 
     82   1.89     lukem .if (${MKKERBEROS} != "no")
     83   1.97  christos SUBDIR+=	libkrb5		# depends on libcrypto and more
     84   1.89     lukem .endif
     85   1.97  christos 
     86  1.113     pooka .if (${MKPUFFS} != "no")
     87  1.113     pooka SUBDIR+=	librefuse	# depends on libpuffs
     88  1.113     pooka .endif
     89  1.113     pooka 
     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