# $OpenBSD: Makefile,v 1.4 2024/08/08 03:46:50 tb Exp $ .include PROG= hmactest LDADD= -lcrypto DPADD= ${LIBCRYPTO} WARNINGS= Yes CFLAGS+= -DLIBRESSL_INTERNAL # The bounded attribute for HMAC_Init_ex() warns for gcc, breaking compilation .if ${COMPILER_VERSION:L} == "clang" CFLAGS+= -Werror .endif .include