Home | History | Annotate | Line # | Download | only in lib
Makefile revision 1.139
      1  1.139       mrg #	$NetBSD: Makefile,v 1.139 2009/06/09 05:20:15 mrg 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.125  gmcgarry SUBDIR=	csu libc .WAIT libarch \
      7  1.123      jmmv 	libbsdmalloc libbluetooth libbz2 \
      8  1.105   gdamore 	libcompat libcrypt \
      9  1.121     joerg 	libcurses libevent libintl libkvm libl libm \
     10  1.121     joerg 	libossaudio libpcap libpci libpmc libposix libprop libpthread \
     11  1.137    plunky 	libpthread_dbg libpuffs libresolv librmt librpcsvc librt \
     12  1.109     pooka 	libterm libusbhid libutil libwrap liby libz
     13   1.60   thorpej 
     14  1.121     joerg # libform and libmenu need libcurses
     15  1.121     joerg SUBDIR+=	.WAIT libform libmenu 
     16  1.121     joerg 
     17   1.76   thorpej .if (${MKSKEY} != "no")
     18   1.76   thorpej SUBDIR+= libskey
     19   1.76   thorpej .endif
     20   1.76   thorpej 
     21   1.61   thorpej # XXX Crypto bits must be done before libtelnet.
     22   1.61   thorpej 
     23   1.62   thorpej .if (${MKCRYPTO} != "no")
     24   1.86    itojun # OpenSSL libraries.
     25   1.89     lukem SUBDIR+= libcrypto libdes
     26   1.17   thorpej 
     27   1.64    itojun .if (${MKCRYPTO_IDEA} != "no")
     28   1.64    itojun SUBDIR+= libcrypto_idea
     29   1.64    itojun .endif	# MKCRYPTO_IDEA != no
     30   1.78    itojun 
     31   1.78    itojun .if (${MKCRYPTO_MDC2} != "no")
     32   1.78    itojun SUBDIR+= libcrypto_mdc2
     33   1.78    itojun .endif	# MKCRYPTO_MDC2 != no
     34   1.64    itojun 
     35   1.64    itojun .if (${MKCRYPTO_RC5} != "no")
     36   1.64    itojun SUBDIR+= libcrypto_rc5
     37   1.64    itojun .endif	# MKCRYPTO_RC5 != no
     38   1.64    itojun 
     39   1.62   thorpej .endif	# MKCRYPTO != no
     40   1.76   thorpej 
     41   1.76   thorpej .if (${MKKERBEROS} != "no")
     42   1.76   thorpej # Heimdal Kerberos 5 libraries
     43  1.114       mrg SUBDIR+= .WAIT libroken libvers libcom_err .WAIT libasn1
     44  1.122   mlelstv SUBDIR+= .WAIT libhx509
     45   1.76   thorpej 
     46   1.88    dyoung .endif	# MKKERBEROS != no
     47   1.54   thorpej 
     48   1.30     mikel SUBDIR+=	libtelnet
     49   1.53    itojun 
     50   1.53    itojun # IPv6/IPsec
     51   1.53    itojun SUBDIR+=	libipsec
     52   1.70    itojun 
     53   1.75  tshiozak # I18N modules
     54   1.75  tshiozak SUBDIR+=	i18n_module
     55    1.1       cgd 
     56   1.89     lukem 
     57   1.89     lukem #
     58   1.89     lukem # Libraries that depend upon any listed previously
     59   1.93     lukem # (and those that depend upon these [and ...])
     60   1.89     lukem #
     61   1.97  christos #==================== 1st library dependency barrier ====================
     62   1.97  christos SUBDIR+=	.WAIT
     63   1.97  christos 
     64   1.97  christos SUBDIR+=	libedit		# depends on libterm
     65   1.97  christos 
     66   1.98  christos SUBDIR+=	libradius	# depends on libcrypto - only if ${MKCRYPTO}
     67   1.98  christos 
     68  1.106       mrg .if (${MKISCSI} != "no")
     69   1.99       agc SUBDIR+=	libiscsi	# depends on libpthread
     70  1.106       mrg .endif
     71   1.99       agc 
     72   1.89     lukem .if (${MKCRYPTO} != "no")
     73   1.97  christos SUBDIR+=	libssl		# 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 SUBDIR+=	librefuse	# depends on libpuffs
     81  1.126     pooka SUBDIR+=	librumpuser	# depends on libpthread
     82  1.126     pooka 
     83  1.139       mrg # these depend on libcrypto*, libz and libbz2
     84  1.139       mrg SUBDIR+=	../crypto/external/bsd/openssh/lib
     85  1.139       mrg SUBDIR+=	../crypto/external/bsd/netpgp/lib
     86  1.139       mrg 
     87   1.97  christos #==================== 2nd library dependency barrier ====================
     88   1.97  christos SUBDIR+=	.WAIT
     89   1.97  christos 
     90  1.100  christos .if (${MKKERBEROS} != "no")
     91  1.100  christos # Heimdal Kerberos 5 libraries depending on libkrb5 and more
     92  1.122   mlelstv SUBDIR+=	libheimntlm
     93  1.122   mlelstv SUBDIR+=	.WAIT libgssapi libhdb
     94  1.122   mlelstv SUBDIR+=	.WAIT libkadm5srv libkadm5clnt libkafs libsl libss
     95  1.100  christos .endif
     96  1.100  christos 
     97  1.126     pooka SUBDIR+=	librump		# depends on librumpuser
     98  1.124     lukem 
     99  1.124     lukem #==================== 3rd library dependency barrier ====================
    100  1.124     lukem SUBDIR+=	.WAIT
    101  1.124     lukem 
    102   1.94        he .if (${MKPAM} != "no")
    103  1.124     lukem SUBDIR+=	libpam		# depends on libkrb5, libkafs and more
    104   1.94        he .endif
    105   1.92     lukem 
    106  1.128     pooka SUBDIR+=	librumpnet	# depends on librump
    107  1.130     pooka SUBDIR+=	librumpvfs	# depends on librump
    108  1.126     pooka 
    109  1.126     pooka #==================== 4th library dependency barrier ====================
    110  1.126     pooka SUBDIR+=	.WAIT
    111  1.131     pooka SUBDIR+=	libukfs		# depends on librump and librumpvfs
    112  1.131     pooka 
    113  1.131     pooka #==================== 5th library dependency barrier ====================
    114  1.131     pooka SUBDIR+=	.WAIT
    115  1.131     pooka SUBDIR+=	libp2k		# depends on libpuffs, librumpvfs and libukfs
    116  1.126     pooka 
    117    1.1       cgd .include <bsd.subdir.mk>
    118