freebsd-dev/lib/libc/tests/hash/Makefile
Enji Cooper 0a57eb32ad Remove CFLAGS for sha2_test
The previous code used to grab definitions from these openssl/openssh,
but this is no longer needed and is no longer correct. libnetbsd
provides all of the needed definitions

libnetbsd is added to CFLAGS automatically via netbsd-tests.test.mk --
hence all of CFLAGS can be cleared
2017-01-14 12:55:32 +00:00

40 lines
726 B
Makefile

# $FreeBSD$
PACKAGE= tests
.include <src.opts.mk>
NETBSD_ATF_TESTS_C=
.if ${MK_OPENSSL} != "no"
# XXX: doesn't compile
#NETBSD_ATF_TESTS_C+= hmac_test
NETBSD_ATF_TESTS_C+= sha2_test
.endif
NETBSD_ATF_TESTS_SH= hash_test
BINDIR= ${TESTSDIR}
PROGS+= h_hash
FILESGROUPS+= ${PACKAGE}DATA_FILES
${PACKAGE}DATA_FILESPACKAGE= tests
${PACKAGE}DATA_FILESDIR= ${TESTSDIR}/data
${PACKAGE}DATA_FILES+= data/md5test-in
${PACKAGE}DATA_FILES+= data/md5test-out
${PACKAGE}DATA_FILES+= data/sha1test-in
${PACKAGE}DATA_FILES+= data/sha1test-out
${PACKAGE}DATA_FILES+= data/sha1test2-out
LIBADD+= md
LIBADD.sha2_test+= crypto
CFLAGS.h_hash+= -I${SRCTOP}/lib/libnetbsd
.include "../Makefile.netbsd-tests"
.include <bsd.test.mk>