xref: /freebsd-11-stable/secure/lib/Makefile (revision 6cec9cad762b6476313fb1f8e931a1647822db6b)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5SUBDIR=
6.if ${MK_OPENSSL} != "no"
7SUBDIR+=libcrypto libssl
8.if ${MK_OPENSSH} != "no"
9SUBDIR+=libssh
10.endif
11.endif
12
13.if ${MK_TESTS} != "no"
14SUBDIR+=tests
15.endif
16
17.include <bsd.subdir.mk>
18