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