1 # $NetBSD: Makefile,v 1.100 2006/03/17 21:43:16 christos Exp $ 2 # from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91 3 4 .include <bsd.own.mk> 5 6 SUBDIR= csu libc .WAIT libarch libbsdmalloc libbz2 libcompat libcrypt \ 7 libcurses libevent libform libintl libkvm libl libm libmagic \ 8 libmenu libossaudio libpcap libpci libpmc libposix libpthread \ 9 libpthread_dbg libresolv librmt librpcsvc librt libterm \ 10 libusbhid libutil libwrap liby libz 11 12 .if (${MKSKEY} != "no") 13 SUBDIR+= libskey 14 .endif 15 16 # XXX Crypto bits must be done before libtelnet. 17 18 .if (${MKCRYPTO} != "no") 19 # OpenSSL libraries. 20 SUBDIR+= libcrypto libdes 21 22 .if (${MKCRYPTO_IDEA} != "no") 23 SUBDIR+= libcrypto_idea 24 .endif # MKCRYPTO_IDEA != no 25 26 .if (${MKCRYPTO_MDC2} != "no") 27 SUBDIR+= libcrypto_mdc2 28 .endif # MKCRYPTO_MDC2 != no 29 30 .if (${MKCRYPTO_RC5} != "no") 31 SUBDIR+= libcrypto_rc5 32 .endif # MKCRYPTO_RC5 != no 33 34 .endif # MKCRYPTO != no 35 36 .if (${MKKERBEROS} != "no") 37 # Heimdal Kerberos 5 libraries 38 SUBDIR+= libroken libvers libcom_err libasn1 39 40 .if (${MKKERBEROS4} != "no") 41 # KTH Kerberos 4 libraries 42 SUBDIR+= libkdb libkadm libkstream 43 .endif # MKKERBEROS4 != no 44 .endif # MKKERBEROS != no 45 46 SUBDIR+= libtelnet 47 48 # IPv6/IPsec 49 SUBDIR+= libipsec 50 51 # I18N modules 52 SUBDIR+= i18n_module 53 54 55 # 56 # Libraries that depend upon any listed previously 57 # (and those that depend upon these [and ...]) 58 # 59 #==================== 1st library dependency barrier ==================== 60 SUBDIR+= .WAIT 61 62 SUBDIR+= libedit # depends on libterm 63 64 SUBDIR+= libradius # depends on libcrypto - only if ${MKCRYPTO} 65 66 SUBDIR+= libiscsi # depends on libpthread 67 68 .if (${MKCRYPTO} != "no") 69 SUBDIR+= libssl # depends on libcrypto 70 SUBDIR+= libssh # depends on libcrypto 71 .endif 72 73 .if (${MKKERBEROS} != "no") 74 SUBDIR+= libkrb5 # depends on libcrypto and more 75 .endif 76 77 .if (${MKKERBEROS4} != "no") 78 SUBDIR+= libkrb # depends on libdes 79 .endif 80 81 #==================== 2nd library dependency barrier ==================== 82 SUBDIR+= .WAIT 83 84 SUBDIR+= libcdk # depends on libedit 85 86 .if (${MKKERBEROS} != "no") 87 # Heimdal Kerberos 5 libraries depending on libkrb5 and more 88 SUBDIR+= libgssapi libhdb libkadm5srv libkadm5clnt libkafs libsl libss 89 .endif 90 91 .if (${MKPAM} != "no") 92 SUBDIR+= libpam # depends on libkrb5 and more 93 .endif 94 95 .include <bsd.subdir.mk> 96