Home | History | Annotate | Line # | Download | only in libcrypto
      1 #	$NetBSD: x509.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/x509/Makefile
      6 #
      7 
      8 .PATH:	${OPENSSLSRC}/crypto/x509
      9 
     10 
     11 X509_SRCS = \
     12 by_dir.c \
     13 by_file.c \
     14 t_crl.c \
     15 t_req.c \
     16 t_x509.c \
     17 x509_att.c \
     18 x509_cmp.c \
     19 x509_d2.c \
     20 x509_def.c \
     21 x509_err.c \
     22 x509_ext.c \
     23 x509_lu.c \
     24 x509_meth.c \
     25 x509_obj.c \
     26 x509_r2x.c \
     27 x509_req.c \
     28 x509_set.c \
     29 x509_trs.c \
     30 x509_txt.c \
     31 x509_v3.c \
     32 x509_vfy.c \
     33 x509_vpm.c \
     34 x509cset.c \
     35 x509name.c \
     36 x509rset.c \
     37 x509spki.c \
     38 x509type.c \
     39 x_all.c \
     40 x_attrib.c \
     41 x_crl.c \
     42 x_exten.c \
     43 x_name.c \
     44 x_pubkey.c \
     45 x_req.c \
     46 x_x509.c \
     47 x_x509a.c
     48 
     49 SRCS += ${X509_SRCS}
     50 
     51 .for cryptosrc in ${X509_SRCS}
     52 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/x509
     53 .endfor
     54