1 1.104 thorpej # $NetBSD: Makefile,v 1.104 2006/04/27 20:41:57 thorpej 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.89 lukem SUBDIR= csu libc .WAIT libarch libbsdmalloc libbz2 libcompat libcrypt \ 7 1.96 christos libcurses libevent libform libintl libkvm libl libm libmagic \ 8 1.104 thorpej libmenu libossaudio libpcap libpci libpmc libposix libprop libpthread \ 9 1.98 christos libpthread_dbg libresolv librmt librpcsvc librt libterm \ 10 1.95 manu libusbhid libutil libwrap liby libz 11 1.60 thorpej 12 1.76 thorpej .if (${MKSKEY} != "no") 13 1.76 thorpej SUBDIR+= libskey 14 1.76 thorpej .endif 15 1.76 thorpej 16 1.61 thorpej # XXX Crypto bits must be done before libtelnet. 17 1.61 thorpej 18 1.62 thorpej .if (${MKCRYPTO} != "no") 19 1.86 itojun # OpenSSL libraries. 20 1.89 lukem SUBDIR+= libcrypto libdes 21 1.17 thorpej 22 1.64 itojun .if (${MKCRYPTO_IDEA} != "no") 23 1.64 itojun SUBDIR+= libcrypto_idea 24 1.64 itojun .endif # MKCRYPTO_IDEA != no 25 1.78 itojun 26 1.78 itojun .if (${MKCRYPTO_MDC2} != "no") 27 1.78 itojun SUBDIR+= libcrypto_mdc2 28 1.78 itojun .endif # MKCRYPTO_MDC2 != no 29 1.64 itojun 30 1.64 itojun .if (${MKCRYPTO_RC5} != "no") 31 1.64 itojun SUBDIR+= libcrypto_rc5 32 1.64 itojun .endif # MKCRYPTO_RC5 != no 33 1.64 itojun 34 1.62 thorpej .endif # MKCRYPTO != no 35 1.76 thorpej 36 1.76 thorpej .if (${MKKERBEROS} != "no") 37 1.76 thorpej # Heimdal Kerberos 5 libraries 38 1.100 christos SUBDIR+= libroken libvers libcom_err libasn1 39 1.76 thorpej 40 1.88 dyoung .endif # MKKERBEROS != no 41 1.54 thorpej 42 1.30 mikel SUBDIR+= libtelnet 43 1.53 itojun 44 1.53 itojun # IPv6/IPsec 45 1.53 itojun SUBDIR+= libipsec 46 1.70 itojun 47 1.75 tshiozak # I18N modules 48 1.75 tshiozak SUBDIR+= i18n_module 49 1.1 cgd 50 1.89 lukem 51 1.89 lukem # 52 1.89 lukem # Libraries that depend upon any listed previously 53 1.93 lukem # (and those that depend upon these [and ...]) 54 1.89 lukem # 55 1.97 christos #==================== 1st library dependency barrier ==================== 56 1.97 christos SUBDIR+= .WAIT 57 1.97 christos 58 1.97 christos SUBDIR+= libedit # depends on libterm 59 1.97 christos 60 1.98 christos SUBDIR+= libradius # depends on libcrypto - only if ${MKCRYPTO} 61 1.98 christos 62 1.99 agc SUBDIR+= libiscsi # depends on libpthread 63 1.99 agc 64 1.89 lukem .if (${MKCRYPTO} != "no") 65 1.97 christos SUBDIR+= libssl # depends on libcrypto 66 1.97 christos SUBDIR+= libssh # depends on libcrypto 67 1.89 lukem .endif 68 1.97 christos 69 1.89 lukem .if (${MKKERBEROS} != "no") 70 1.97 christos SUBDIR+= libkrb5 # depends on libcrypto and more 71 1.89 lukem .endif 72 1.97 christos 73 1.97 christos #==================== 2nd library dependency barrier ==================== 74 1.97 christos SUBDIR+= .WAIT 75 1.97 christos 76 1.100 christos .if (${MKKERBEROS} != "no") 77 1.100 christos # Heimdal Kerberos 5 libraries depending on libkrb5 and more 78 1.101 bouyer SUBDIR+= libgssapi libhdb .WAIT libkadm5srv libkadm5clnt libkafs libsl libss 79 1.100 christos .endif 80 1.100 christos 81 1.94 he .if (${MKPAM} != "no") 82 1.97 christos SUBDIR+= libpam # depends on libkrb5 and more 83 1.94 he .endif 84 1.92 lukem 85 1.1 cgd .include <bsd.subdir.mk> 86