1 1.100 christos # $NetBSD: Makefile,v 1.100 2006/03/17 21:43:16 christos 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.91 christos libmenu libossaudio libpcap libpci libpmc libposix 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.87 itojun .if (${MKKERBEROS4} != "no") 41 1.76 thorpej # KTH Kerberos 4 libraries 42 1.89 lukem SUBDIR+= libkdb libkadm libkstream 43 1.87 itojun .endif # MKKERBEROS4 != no 44 1.88 dyoung .endif # MKKERBEROS != no 45 1.54 thorpej 46 1.30 mikel SUBDIR+= libtelnet 47 1.53 itojun 48 1.53 itojun # IPv6/IPsec 49 1.53 itojun SUBDIR+= libipsec 50 1.70 itojun 51 1.75 tshiozak # I18N modules 52 1.75 tshiozak SUBDIR+= i18n_module 53 1.1 cgd 54 1.89 lukem 55 1.89 lukem # 56 1.89 lukem # Libraries that depend upon any listed previously 57 1.93 lukem # (and those that depend upon these [and ...]) 58 1.89 lukem # 59 1.97 christos #==================== 1st library dependency barrier ==================== 60 1.97 christos SUBDIR+= .WAIT 61 1.97 christos 62 1.97 christos SUBDIR+= libedit # depends on libterm 63 1.97 christos 64 1.98 christos SUBDIR+= libradius # depends on libcrypto - only if ${MKCRYPTO} 65 1.98 christos 66 1.99 agc SUBDIR+= libiscsi # depends on libpthread 67 1.99 agc 68 1.89 lukem .if (${MKCRYPTO} != "no") 69 1.97 christos SUBDIR+= libssl # depends on libcrypto 70 1.97 christos SUBDIR+= libssh # depends on libcrypto 71 1.89 lukem .endif 72 1.97 christos 73 1.89 lukem .if (${MKKERBEROS} != "no") 74 1.97 christos SUBDIR+= libkrb5 # depends on libcrypto and more 75 1.89 lukem .endif 76 1.97 christos 77 1.89 lukem .if (${MKKERBEROS4} != "no") 78 1.97 christos SUBDIR+= libkrb # depends on libdes 79 1.89 lukem .endif 80 1.89 lukem 81 1.97 christos #==================== 2nd library dependency barrier ==================== 82 1.97 christos SUBDIR+= .WAIT 83 1.97 christos 84 1.97 christos SUBDIR+= libcdk # depends on libedit 85 1.93 lukem 86 1.100 christos .if (${MKKERBEROS} != "no") 87 1.100 christos # Heimdal Kerberos 5 libraries depending on libkrb5 and more 88 1.100 christos SUBDIR+= libgssapi libhdb libkadm5srv libkadm5clnt libkafs libsl libss 89 1.100 christos .endif 90 1.100 christos 91 1.94 he .if (${MKPAM} != "no") 92 1.97 christos SUBDIR+= libpam # depends on libkrb5 and more 93 1.94 he .endif 94 1.92 lukem 95 1.1 cgd .include <bsd.subdir.mk> 96