opnsense-src/secure/lib/libcrypto/Makefile.inc
Enji Cooper 0d61082e3c openssl: update ASM and version info for 3.0.16 import
MFC after:	1 week
MFC with:	0d0c8621fd181e507f0fb50ffcca606faf66a8c2
Differential Revision:	https://reviews.freebsd.org/D49297

(cherry picked from commit d2a55e6a9348bb55038dbc6b727ab041085f22db)
2025-03-25 14:07:59 -07:00

22 lines
540 B
Makefile

.include <bsd.own.mk>
# OpenSSL version used for manual page generation
OPENSSL_VER= 3.0.16
OPENSSL_DATE= 2025-02-11
LCRYPTO_SRC= ${SRCTOP}/crypto/openssl
LCRYPTO_DOC= ${LCRYPTO_SRC}/doc
CFLAGS+= -I${LCRYPTO_SRC}
CFLAGS+= -I${LCRYPTO_SRC}/include
CFLAGS+= -I${LCRYPTO_SRC}/providers/common/include
CFLAGS+= -I${LCRYPTO_SRC}/providers/implementations/include
.include "Makefile.common"
.for pcfile in ${PCFILES}
${pcfile}: ${pcfile}.in
sed -e 's,@openssl_ver@,${OPENSSL_VER},g' ${.ALLSRC} > ${.TARGET}
.endfor
CLEANFILES+= ${PCFILES}