Makefile revision 1.15
1# $NetBSD: Makefile,v 1.15 2023/05/08 17:46:06 christos Exp $ 2 3.include <bsd.own.mk> 4 5SUBDIR+=bf bn cast conf des dh dsa ec engine evp hmac \ 6 rc2 rc4 rsa srp threads 7 8.if ${HAVE_OPENSSL} <= 11 9SUBDIR+= ecdh ecdsa md2 10.endif 11 12SUBDIR+=idea mdc2 13SUBDIR+=rc5 14 15.if ${HAVE_OPENSSL} == 10 16SUBDIR += lhash sha x509v3 17.endif 18 19TESTSDIR= ${TESTSBASE}/crypto/libcrypto 20 21.if ${HAVE_OPENSSL} == 10 22TESTS_SH= t_certs 23.endif 24TESTS_SH+= t_ciphers 25TESTS_SH+= t_hashes 26TESTS_SH+= t_libcrypto 27TESTS_SH+= t_pubkey 28 29.include <bsd.test.mk> 30