1 1.97 christos # $NetBSD: Makefile,v 1.97 2005/06/03 14:28:07 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.95 manu libpthread_dbg libradius 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.89 lukem SUBDIR+= libroken libvers libcom_err libsl libss libasn1 libhdb \ 39 1.87 itojun libkadm5srv libkadm5clnt libgssapi libkafs 40 1.76 thorpej 41 1.87 itojun .if (${MKKERBEROS4} != "no") 42 1.76 thorpej # KTH Kerberos 4 libraries 43 1.89 lukem SUBDIR+= libkdb libkadm libkstream 44 1.87 itojun .endif # MKKERBEROS4 != no 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.97 christos SUBDIR+= libedit # depends on libterm 64 1.97 christos 65 1.89 lukem .if (${MKCRYPTO} != "no") 66 1.97 christos SUBDIR+= libssl # depends on libcrypto 67 1.97 christos SUBDIR+= libssh # depends on libcrypto 68 1.89 lukem .endif 69 1.97 christos 70 1.89 lukem .if (${MKKERBEROS} != "no") 71 1.97 christos SUBDIR+= libkrb5 # depends on libcrypto and more 72 1.89 lukem .endif 73 1.97 christos 74 1.89 lukem .if (${MKKERBEROS4} != "no") 75 1.97 christos SUBDIR+= libkrb # depends on libdes 76 1.89 lukem .endif 77 1.89 lukem 78 1.97 christos #==================== 2nd library dependency barrier ==================== 79 1.97 christos SUBDIR+= .WAIT 80 1.97 christos 81 1.97 christos SUBDIR+= libcdk # depends on libedit 82 1.93 lukem 83 1.94 he .if (${MKPAM} != "no") 84 1.97 christos SUBDIR+= libpam # depends on libkrb5 and more 85 1.94 he .endif 86 1.92 lukem 87 1.1 cgd .include <bsd.subdir.mk> 88