0f10aa9dce
how many bugs this found :-)
29 lines
638 B
Makefile
29 lines
638 B
Makefile
# $NetBSD: Makefile.inc,v 1.4 2010/11/03 16:10:19 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
# Not yet
|
|
# .include "../Makefile.inc"
|
|
TESTSDIR= ${TESTSBASE}/crypto/libcrypto
|
|
ATFFILE= no
|
|
|
|
.if defined(HELPER_NAME)
|
|
HELPER_SRCS?= ${HELPER_NAME}.c
|
|
|
|
PROG= h_${HELPER_NAME}
|
|
SRCS= ${HELPER_SRCS}
|
|
MAN= # empty
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
DPADD+= ${LIBCRYPTO} ${LIBCRYPT}
|
|
LDADD+= -lcrypto -lcrypt
|
|
|
|
CPPFLAGS+= -DOPENSSL_FIPS
|
|
CPPFLAGS+= -I${OPENSSLSRC} -I${OPENSSLSRC}/crypto
|
|
CRYPTODIST= ${NETBSDSRCDIR}/crypto
|
|
.include "${NETBSDSRCDIR}/crypto/Makefile.openssl"
|
|
.PATH: ${OPENSSLSRC}/crypto/${HELPER_DIR}
|
|
|
|
.include <bsd.test.mk>
|
|
.include <bsd.prog.mk>
|
|
.endif
|