blob: 73c650d590ffa3721110f95fbb5810f9855133a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.include <bsd.own.mk>
PACKAGE?= openssl
LIB_PACKAGE=
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/fips/include
CFLAGS+= -I${LCRYPTO_SRC}/providers/implementations/include
.SUFFIXES: .pc
.PATH.pc: ${LCRYPTO_SRC}/exporters
.include "Makefile.common"
|