blob: 6364327d70887c51596c1ce40bab58f58a12f093 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.include <src.opts.mk>
SUBDIR= libpkgecc
.if ${MK_OPENSSL} != "no"
SUBDIR+=libcrypto libssl
.if ${MK_OPENSSH} != "no"
SUBDIR+=libssh
.endif
.endif
SUBDIR.${MK_TESTS}+= tests
.include <bsd.subdir.mk>
|