1 1.78 itojun # $NetBSD: Makefile,v 1.78 2002/09/26 13:29:44 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.77 thorpej SUBDIR= csu libc .WAIT libarch libbz2 libcdk libcompat libcrypt libcurses \ 7 1.77 thorpej libedit libform libintl libkvm libl libm libmenu libossaudio libpcap \ 8 1.77 thorpej libpci libpmc libposix libresolv librmt librpcsvc libterm libusbhid \ 9 1.77 thorpej libutil libwrap liby libz 10 1.60 thorpej 11 1.76 thorpej .if (${MKSKEY} != "no") 12 1.76 thorpej SUBDIR+= libskey 13 1.76 thorpej .endif 14 1.76 thorpej 15 1.61 thorpej # XXX Crypto bits must be done before libtelnet. 16 1.61 thorpej 17 1.62 thorpej .if (${MKCRYPTO} != "no") 18 1.61 thorpej # OpenSSL libraries. NOTE! WE DO NOT TRAVERSE INTO libdes FOR A REASON! 19 1.60 thorpej SUBDIR+= libcrypto libssl 20 1.17 thorpej 21 1.64 itojun .if (${MKCRYPTO_IDEA} != "no") 22 1.64 itojun SUBDIR+= libcrypto_idea 23 1.64 itojun .endif # MKCRYPTO_IDEA != no 24 1.78 itojun 25 1.78 itojun .if (${MKCRYPTO_MDC2} != "no") 26 1.78 itojun SUBDIR+= libcrypto_mdc2 27 1.78 itojun .endif # MKCRYPTO_MDC2 != no 28 1.64 itojun 29 1.64 itojun .if (${MKCRYPTO_RC5} != "no") 30 1.64 itojun SUBDIR+= libcrypto_rc5 31 1.64 itojun .endif # MKCRYPTO_RC5 != no 32 1.64 itojun 33 1.62 thorpej .endif # MKCRYPTO != no 34 1.76 thorpej 35 1.76 thorpej .if (${MKKERBEROS} != "no") 36 1.76 thorpej # Heimdal Kerberos 5 libraries 37 1.76 thorpej SUBDIR+= libroken libvers libcom_err libsl libss libasn1 libkrb5 libhdb \ 38 1.76 thorpej libkadm5srv libkadm5clnt libgssapi 39 1.76 thorpej 40 1.76 thorpej # KTH Kerberos 4 libraries 41 1.76 thorpej SUBDIR+= libkrb libkdb libkadm libkafs 42 1.76 thorpej SUBDIR+= libkstream 43 1.76 thorpej .endif # MKKERBEROS != no 44 1.54 thorpej 45 1.30 mikel SUBDIR+= libtelnet 46 1.53 itojun 47 1.53 itojun # IPv6/IPsec 48 1.53 itojun SUBDIR+= libipsec 49 1.70 itojun 50 1.75 tshiozak # I18N modules 51 1.75 tshiozak SUBDIR+= i18n_module 52 1.1 cgd 53 1.1 cgd .include <bsd.subdir.mk> 54