mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
libecc is not intended to be general use, other applications should really be using openssl. pkg(7) uses libecc to align with the pkg(8) project and its goals. This will be used in the upcoming support for ECC in pkg(7). Reviewed by: emaste (cherry picked from commit 05427f4639bcf2703329a9be9d25ec09bb782742)
14 lines
203 B
Makefile
14 lines
203 B
Makefile
|
|
.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>
|