Home | History | Annotate | Line # | Download | only in libcrypto
      1 #	$NetBSD: blake2.inc,v 1.1.1.1 2023/04/18 14:19:03 christos Exp $
      2 #
      3 #	@(#) Copyright (c) 1995 Simon J. Gerraty
      4 #
      5 #	SRCS extracted from src/crypto/dist/openssl/crypto/blake2/Makefile
      6 #
      7 
      8 .PATH:	${OPENSSLSRC}/crypto/blake2
      9 
     10 BLAKE2_SRCS = \
     11 blake2b.c \
     12 blake2s.c \
     13 m_blake2b.c \
     14 m_blake2s.c
     15 
     16 SRCS += ${BLAKE2_SRCS}
     17 
     18 .for cryptosrc in ${BLAKE2_SRCS}
     19 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/blake2
     20 .endfor
     21