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