Home | History | Annotate | Line # | Download | only in libcrypto
      1 #	$NetBSD: dsa.inc,v 1.1.1.2 2023/04/18 14:19:04 christos Exp $
      2 #
      3 #	@(#) Copyright (c) 1995 Simon J. Gerraty
      4 #
      5 #	SRCS extracted from src/crypto/dist/openssl/crypto/dsa/Makefile
      6 #
      7 
      8 .PATH:	${OPENSSLSRC}/crypto/dsa
      9 
     10 
     11 DSA_SRCS = \
     12 dsa_ameth.c \
     13 dsa_asn1.c \
     14 dsa_depr.c \
     15 dsa_err.c \
     16 dsa_gen.c \
     17 dsa_key.c \
     18 dsa_lib.c \
     19 dsa_meth.c \
     20 dsa_ossl.c \
     21 dsa_pmeth.c \
     22 dsa_prn.c \
     23 dsa_sign.c \
     24 dsa_vrf.c
     25 
     26 SRCS += ${DSA_SRCS}
     27 
     28 .for cryptosrc in ${DSA_SRCS}
     29 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/dsa
     30 .endfor
     31