1.include <bsd.own.mk> 2 3PACKAGE= openssl 4LIB_PACKAGE= 5 6# OpenSSL version used for manual page generation 7.include "Makefile.version" 8 9LCRYPTO_SRC= ${SRCTOP}/crypto/openssl 10LCRYPTO_DOC= ${LCRYPTO_SRC}/doc 11 12CFLAGS+= -I${LCRYPTO_SRC} 13CFLAGS+= -I${LCRYPTO_SRC}/include 14CFLAGS+= -I${LCRYPTO_SRC}/providers/common/include 15CFLAGS+= -I${LCRYPTO_SRC}/providers/fips/include 16CFLAGS+= -I${LCRYPTO_SRC}/providers/implementations/include 17 18.include "Makefile.common" 19 20.for pcfile in ${PCFILES} 21${pcfile}: ${pcfile}.in 22 sed -e 's,@openssl_ver@,${OPENSSL_VER},g' ${.ALLSRC} > ${.TARGET} 23.endfor 24CLEANFILES+= ${PCFILES} 25