diff options
Diffstat (limited to 'secure/lib/Makefile')
-rw-r--r-- | secure/lib/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile new file mode 100644 index 0000000..4ca8517 --- /dev/null +++ b/secure/lib/Makefile @@ -0,0 +1,17 @@ +# $FreeBSD$ + +.include <src.opts.mk> + +SUBDIR= +.if ${MK_OPENSSL} != "no" +SUBDIR+=libcrypto libssl +.if ${MK_OPENSSH} != "no" +SUBDIR+=libssh +.endif +.endif + +.if ${MK_TESTS} != "no" +SUBDIR+=tests +.endif + +.include <bsd.subdir.mk> |