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