1 1.76 thorpej # $NetBSD: Makefile,v 1.76 2002/03/22 18:10:20 thorpej 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.73 tv SUBDIR= csu libc .WAIT libarch libbz2 libcdk libcompat libcrypt libcurses libedit \ 7 1.72 thorpej libform libintl libkvm libl libm libmenu libossaudio libpcap libpci \ 8 1.76 thorpej libposix libresolv librmt librpcsvc libterm libusbhid libutil \ 9 1.72 thorpej 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.64 itojun 25 1.64 itojun .if (${MKCRYPTO_RC5} != "no") 26 1.64 itojun SUBDIR+= libcrypto_rc5 27 1.64 itojun .endif # MKCRYPTO_RC5 != no 28 1.64 itojun 29 1.62 thorpej .endif # MKCRYPTO != no 30 1.76 thorpej 31 1.76 thorpej .if (${MKKERBEROS} != "no") 32 1.76 thorpej # Heimdal Kerberos 5 libraries 33 1.76 thorpej SUBDIR+= libroken libvers libcom_err libsl libss libasn1 libkrb5 libhdb \ 34 1.76 thorpej libkadm5srv libkadm5clnt libgssapi 35 1.76 thorpej 36 1.76 thorpej # KTH Kerberos 4 libraries 37 1.76 thorpej SUBDIR+= libkrb libkdb libkadm libkafs 38 1.76 thorpej SUBDIR+= libkstream 39 1.76 thorpej .endif # MKKERBEROS != no 40 1.54 thorpej 41 1.30 mikel SUBDIR+= libtelnet 42 1.53 itojun 43 1.53 itojun # IPv6/IPsec 44 1.53 itojun SUBDIR+= libipsec 45 1.70 itojun 46 1.75 tshiozak # I18N modules 47 1.75 tshiozak SUBDIR+= i18n_module 48 1.1 cgd 49 1.1 cgd .include <bsd.subdir.mk> 50