1 1.86 itojun # $NetBSD: Makefile,v 1.86 2003/07/23 05:27:38 itojun 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.84 elric SUBDIR= csu libc .WAIT libarch libbsdmalloc libbz2 libcdk libcompat libcrypt \ 7 1.85 provos libcurses libedit libevent libform libintl libkvm libl libm libmagic \ 8 1.85 provos libmenu libossaudio libpcap libpci libpmc libposix libpthread \ 9 1.85 provos libpthread_dbg libresolv librmt librpcsvc librt libterm libusbhid \ 10 1.85 provos 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.86 itojun SUBDIR+= libcrypto libssl 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.76 thorpej SUBDIR+= libroken libvers libcom_err libsl libss libasn1 libkrb5 libhdb \ 39 1.76 thorpej libkadm5srv libkadm5clnt libgssapi 40 1.76 thorpej 41 1.76 thorpej # KTH Kerberos 4 libraries 42 1.76 thorpej SUBDIR+= libkrb libkdb libkadm libkafs 43 1.76 thorpej SUBDIR+= libkstream 44 1.76 thorpej .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.1 cgd .include <bsd.subdir.mk> 55