mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
MFC after: 1 week MFC with: 0d0c8621fd181e507f0fb50ffcca606faf66a8c2 Differential Revision: https://reviews.freebsd.org/D49297 (cherry picked from commit d2a55e6a9348bb55038dbc6b727ab041085f22db)
22 lines
540 B
Makefile
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}
|