1 # $NetBSD: Makefile,v 1.5 2010/07/11 06:16:54 mrg Exp $ 2 3 .include <bsd.own.mk> 4 5 .if ${MKCRYPTO} != "no" 6 7 SUBDIR+=bf bn cast conf des dh dsa ec ecdh ecdsa engine hmac lhash \ 8 md2 md4 md5 rand rc2 rc4 ripemd rsa sha sha1 threads x509v3 9 10 .if ${MKCRYPTO_IDEA} != "no" 11 SUBDIR+=idea 12 .endif 13 .if ${MKCRYPTO_RC5} != "no" 14 SUBDIR+=rc5 15 .endif 16 .if ${MKCRYPTO_MDC2} != "no" 17 SUBDIR+=mdc2 18 .endif 19 20 TESTSDIR= ${TESTSBASE}/crypto/libcrypto 21 22 TESTS_SH= t_certs 23 TESTS_SH+= t_ciphers 24 TESTS_SH+= t_hashes 25 TESTS_SH+= t_libcrypto 26 TESTS_SH+= t_pubkey 27 28 .include <bsd.test.mk> 29 30 .endif 31 32 .include <bsd.subdir.mk> 33