diff options
| author | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-04-01 05:45:12 +0000 |
|---|---|---|
| committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-04-01 05:45:12 +0000 |
| commit | 5ea556d98ce7971950c11bc7102dc57ed4f7711b (patch) | |
| tree | 86073dfeaf283069706fbf5a129e2d30a9e3243f | |
| parent | 8abaf6a7c8c401eba70d478f38fcd7caab3085b0 (diff) | |
Notes
| -rw-r--r-- | lib/libveriexec/Makefile | 2 | ||||
| -rw-r--r-- | share/mk/src.libnames.mk | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/libveriexec/Makefile b/lib/libveriexec/Makefile index 31f35f3592d5..2c68faf3356f 100644 --- a/lib/libveriexec/Makefile +++ b/lib/libveriexec/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -.include <bsd.own.mk> +.include <src.opts.mk> LIB= veriexec MAN= veriexec.3 diff --git a/share/mk/src.libnames.mk b/share/mk/src.libnames.mk index ac16e1a87bf2..665e33d95975 100644 --- a/share/mk/src.libnames.mk +++ b/share/mk/src.libnames.mk @@ -222,18 +222,18 @@ _LIBRARIES+= \ .endif .if ${MK_BEARSSL} == "yes" -_INTERNALLIBS+= \ +_LIBRARIES+= \ bearssl \ secureboot \ -LIBBEARSSL?= ${LIBBEARSSLDIR}/libbearssl${PIE_SUFFIX}.a -LIBSECUREBOOT?= ${LIBSECUREBOOTDIR}/libsecureboot${PIE_SUFFIX}.a +LIBBEARSSL?= ${LIBBEARSSLDIR}/libbearssl.a +LIBSECUREBOOT?= ${LIBSECUREBOOTDIR}/libsecureboot.a .endif .if ${MK_VERIEXEC} == "yes" -_INTERNALLIBS+= veriexec +_LIBRARIES+= veriexec -LIBVERIEXEC?= ${LIBVERIEXECDIR}/libveriexec${PIE_SUFFIX}.a +LIBVERIEXEC?= ${LIBVERIEXECDIR}/libveriexec.a .endif # Each library's LIBADD needs to be duplicated here for static linkage of |
