Sync usage with man page.
[netbsd-mini2440.git] / tests / crypto / libcrypto / Makefile
blob5a73c190a89fcff225dc11559d42f74a054d4ec1
1 # $NetBSD: Makefile,v 1.2 2009/02/13 21:33:27 jmmv Exp $
3 .include <bsd.own.mk>
5 SUBDIR+=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
8 .if ${MKCRYPTO_IDEA} != "no"
9 SUBDIR+=idea
10 .endif
11 .if ${MKCRYPTO_RC5} != "no"
12 SUBDIR+=rc5
13 .endif
14 .if ${MKCRYPTO_MDC2} != "no"
15 SUBDIR+=mdc2
16 .endif
18 TESTSDIR= ${TESTSBASE}/crypto/libcrypto
20 TESTS_SH= t_libcrypto
22 CLEANFILES+= t_libcrypto.sh
23 t_libcrypto.sh: t_libcrypto.awk t_libcrypto.in
24 ${TOOL_AWK} -f ${.CURDIR}/t_libcrypto.awk ${.CURDIR}/t_libcrypto.in \
25 >t_libcrypto.sh.tmp
26 mv t_libcrypto.sh.tmp t_libcrypto.sh
28 .include <bsd.subdir.mk>
29 .include <bsd.test.mk>