1 # $NetBSD: rsa.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/rsa/Makefile 6 # 7 8 .PATH: ${OPENSSLSRC}/crypto/rsa 9 10 11 RSA_SRCS = \ 12 rsa_ameth.c \ 13 rsa_asn1.c \ 14 rsa_chk.c \ 15 rsa_crpt.c \ 16 rsa_depr.c \ 17 rsa_err.c \ 18 rsa_gen.c \ 19 rsa_lib.c \ 20 rsa_meth.c \ 21 rsa_mp.c \ 22 rsa_none.c \ 23 rsa_oaep.c \ 24 rsa_ossl.c \ 25 rsa_pk1.c \ 26 rsa_pmeth.c \ 27 rsa_prn.c \ 28 rsa_pss.c \ 29 rsa_saos.c \ 30 rsa_sign.c \ 31 rsa_ssl.c \ 32 rsa_x931.c \ 33 rsa_x931g.c 34 35 SRCS += ${RSA_SRCS} 36 37 .for cryptosrc in ${RSA_SRCS} 38 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/rsa 39 .endfor 40