1 1.116 tls # $NetBSD: Makefile,v 1.116 2007/05/30 01:13:14 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.97 christos SUBDIR+= libedit # depends on libterm 60 1.97 christos 61 1.108 tron SUBDIR+= libmagic # depends on libz 62 1.108 tron 63 1.98 christos SUBDIR+= libradius # depends on libcrypto - only if ${MKCRYPTO} 64 1.98 christos 65 1.106 mrg .if (${MKISCSI} != "no") 66 1.99 agc SUBDIR+= libiscsi # depends on libpthread 67 1.106 mrg .endif 68 1.99 agc 69 1.89 lukem .if (${MKCRYPTO} != "no") 70 1.97 christos SUBDIR+= libssl # depends on libcrypto 71 1.97 christos SUBDIR+= libssh # depends on libcrypto 72 1.89 lukem .endif 73 1.97 christos 74 1.89 lukem .if (${MKKERBEROS} != "no") 75 1.97 christos SUBDIR+= libkrb5 # depends on libcrypto and more 76 1.89 lukem .endif 77 1.97 christos 78 1.113 pooka .if (${MKPUFFS} != "no") 79 1.113 pooka SUBDIR+= librefuse # depends on libpuffs 80 1.113 pooka .endif 81 1.113 pooka 82 1.97 christos #==================== 2nd library dependency barrier ==================== 83 1.97 christos SUBDIR+= .WAIT 84 1.97 christos 85 1.100 christos .if (${MKKERBEROS} != "no") 86 1.100 christos # Heimdal Kerberos 5 libraries depending on libkrb5 and more 87 1.101 bouyer SUBDIR+= libgssapi libhdb .WAIT libkadm5srv libkadm5clnt libkafs libsl libss 88 1.100 christos .endif 89 1.100 christos 90 1.94 he .if (${MKPAM} != "no") 91 1.112 bouyer SUBDIR+= .WAIT libpam # depends on libkrb5, libkafs and more 92 1.94 he .endif 93 1.92 lukem 94 1.1 cgd .include <bsd.subdir.mk> 95