1 1.122 mlelstv # $NetBSD: Makefile,v 1.122 2008/03/22 08:37:26 mlelstv 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.120 jmmv SUBDIR= csu libc .WAIT libarch libatf libbsdmalloc libbluetooth libbz2 \ 7 1.105 gdamore libcompat libcrypt \ 8 1.121 joerg libcurses libevent libintl libkvm libl libm \ 9 1.121 joerg 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.121 joerg # libform and libmenu need libcurses 14 1.121 joerg SUBDIR+= .WAIT libform libmenu 15 1.121 joerg 16 1.76 thorpej .if (${MKSKEY} != "no") 17 1.76 thorpej SUBDIR+= libskey 18 1.76 thorpej .endif 19 1.76 thorpej 20 1.61 thorpej # XXX Crypto bits must be done before libtelnet. 21 1.61 thorpej 22 1.62 thorpej .if (${MKCRYPTO} != "no") 23 1.86 itojun # OpenSSL libraries. 24 1.89 lukem SUBDIR+= libcrypto libdes 25 1.17 thorpej 26 1.64 itojun .if (${MKCRYPTO_IDEA} != "no") 27 1.64 itojun SUBDIR+= libcrypto_idea 28 1.64 itojun .endif # MKCRYPTO_IDEA != no 29 1.78 itojun 30 1.78 itojun .if (${MKCRYPTO_MDC2} != "no") 31 1.78 itojun SUBDIR+= libcrypto_mdc2 32 1.78 itojun .endif # MKCRYPTO_MDC2 != no 33 1.64 itojun 34 1.64 itojun .if (${MKCRYPTO_RC5} != "no") 35 1.64 itojun SUBDIR+= libcrypto_rc5 36 1.64 itojun .endif # MKCRYPTO_RC5 != no 37 1.64 itojun 38 1.62 thorpej .endif # MKCRYPTO != no 39 1.76 thorpej 40 1.76 thorpej .if (${MKKERBEROS} != "no") 41 1.76 thorpej # Heimdal Kerberos 5 libraries 42 1.114 mrg SUBDIR+= .WAIT libroken libvers libcom_err .WAIT libasn1 43 1.122 mlelstv SUBDIR+= .WAIT libhx509 44 1.76 thorpej 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.97 christos #==================== 1st library dependency barrier ==================== 61 1.97 christos SUBDIR+= .WAIT 62 1.97 christos 63 1.117 joerg SUBDIR+= libarchive # depends on libbz2 and libz 64 1.117 joerg 65 1.97 christos SUBDIR+= libedit # depends on libterm 66 1.97 christos 67 1.108 tron SUBDIR+= libmagic # depends on libz 68 1.108 tron 69 1.98 christos SUBDIR+= libradius # depends on libcrypto - only if ${MKCRYPTO} 70 1.98 christos 71 1.106 mrg .if (${MKISCSI} != "no") 72 1.99 agc SUBDIR+= libiscsi # depends on libpthread 73 1.106 mrg .endif 74 1.99 agc 75 1.89 lukem .if (${MKCRYPTO} != "no") 76 1.97 christos SUBDIR+= libssl # depends on libcrypto 77 1.97 christos SUBDIR+= libssh # depends on libcrypto 78 1.89 lukem .endif 79 1.97 christos 80 1.89 lukem .if (${MKKERBEROS} != "no") 81 1.97 christos SUBDIR+= libkrb5 # depends on libcrypto and more 82 1.89 lukem .endif 83 1.97 christos 84 1.113 pooka .if (${MKPUFFS} != "no") 85 1.113 pooka SUBDIR+= librefuse # depends on libpuffs 86 1.113 pooka .endif 87 1.113 pooka 88 1.119 tls # XXX These bind9/ISC libraries should depend on each other but the 89 1.119 tls # XXX dependency ordering requires considerable investigation. 90 1.119 tls # XXX Please preserve the order below so we know the order ISC links 91 1.119 tls # XXX them in in their Makefiles. 92 1.119 tls SUBDIR+= libbind9 libdns liblwres libisccfg libisccc libisc # dep. libpthread 93 1.119 tls 94 1.97 christos #==================== 2nd library dependency barrier ==================== 95 1.97 christos SUBDIR+= .WAIT 96 1.97 christos 97 1.100 christos .if (${MKKERBEROS} != "no") 98 1.100 christos # Heimdal Kerberos 5 libraries depending on libkrb5 and more 99 1.122 mlelstv SUBDIR+= libheimntlm 100 1.122 mlelstv SUBDIR+= .WAIT libgssapi libhdb 101 1.122 mlelstv SUBDIR+= .WAIT libkadm5srv libkadm5clnt libkafs libsl libss 102 1.100 christos .endif 103 1.100 christos 104 1.94 he .if (${MKPAM} != "no") 105 1.112 bouyer SUBDIR+= .WAIT libpam # depends on libkrb5, libkafs and more 106 1.94 he .endif 107 1.92 lukem 108 1.1 cgd .include <bsd.subdir.mk> 109