1 1.121 joerg # $NetBSD: Makefile,v 1.121 2008/03/12 00:21:29 joerg 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.76 thorpej 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.117 joerg SUBDIR+= libarchive # depends on libbz2 and libz 63 1.117 joerg 64 1.97 christos SUBDIR+= libedit # depends on libterm 65 1.97 christos 66 1.108 tron SUBDIR+= libmagic # depends on libz 67 1.108 tron 68 1.98 christos SUBDIR+= libradius # depends on libcrypto - only if ${MKCRYPTO} 69 1.98 christos 70 1.106 mrg .if (${MKISCSI} != "no") 71 1.99 agc SUBDIR+= libiscsi # depends on libpthread 72 1.106 mrg .endif 73 1.99 agc 74 1.89 lukem .if (${MKCRYPTO} != "no") 75 1.97 christos SUBDIR+= libssl # depends on libcrypto 76 1.97 christos SUBDIR+= libssh # depends on libcrypto 77 1.89 lukem .endif 78 1.97 christos 79 1.89 lukem .if (${MKKERBEROS} != "no") 80 1.97 christos SUBDIR+= libkrb5 # depends on libcrypto and more 81 1.89 lukem .endif 82 1.97 christos 83 1.113 pooka .if (${MKPUFFS} != "no") 84 1.113 pooka SUBDIR+= librefuse # depends on libpuffs 85 1.113 pooka .endif 86 1.113 pooka 87 1.119 tls # XXX These bind9/ISC libraries should depend on each other but the 88 1.119 tls # XXX dependency ordering requires considerable investigation. 89 1.119 tls # XXX Please preserve the order below so we know the order ISC links 90 1.119 tls # XXX them in in their Makefiles. 91 1.119 tls SUBDIR+= libbind9 libdns liblwres libisccfg libisccc libisc # dep. libpthread 92 1.119 tls 93 1.97 christos #==================== 2nd library dependency barrier ==================== 94 1.97 christos SUBDIR+= .WAIT 95 1.97 christos 96 1.100 christos .if (${MKKERBEROS} != "no") 97 1.100 christos # Heimdal Kerberos 5 libraries depending on libkrb5 and more 98 1.101 bouyer SUBDIR+= libgssapi libhdb .WAIT libkadm5srv libkadm5clnt libkafs libsl libss 99 1.100 christos .endif 100 1.100 christos 101 1.94 he .if (${MKPAM} != "no") 102 1.112 bouyer SUBDIR+= .WAIT libpam # depends on libkrb5, libkafs and more 103 1.94 he .endif 104 1.92 lukem 105 1.1 cgd .include <bsd.subdir.mk> 106