Home | History | Annotate | Line # | Download | only in libcrypto
      1  1.1.1.2  christos #	$NetBSD: crypto.inc,v 1.1.1.2 2023/04/18 14:19:03 christos Exp $
      2      1.1  christos #
      3      1.1  christos #	@(#) Copyright (c) 1995 Simon J. Gerraty
      4      1.1  christos #
      5      1.1  christos #	SRCS extracted from src/crypto/dist/openssl/crypto/Makefile
      6      1.1  christos #
      7      1.1  christos 
      8      1.1  christos .PATH:	${OPENSSLSRC}/crypto
      9      1.1  christos 
     10      1.1  christos 
     11  1.1.1.2  christos CRYPTO_SRCS += \
     12  1.1.1.2  christos cpt_err.c \
     13  1.1.1.2  christos cryptlib.c \
     14  1.1.1.2  christos ctype.c \
     15  1.1.1.2  christos cversion.c \
     16  1.1.1.2  christos ebcdic.c \
     17  1.1.1.2  christos ex_data.c \
     18  1.1.1.2  christos getenv.c \
     19  1.1.1.2  christos init.c \
     20  1.1.1.2  christos mem.c \
     21  1.1.1.2  christos mem_dbg.c \
     22  1.1.1.2  christos mem_sec.c \
     23  1.1.1.2  christos o_dir.c \
     24  1.1.1.2  christos o_fips.c \
     25  1.1.1.2  christos o_fopen.c \
     26  1.1.1.2  christos o_init.c \
     27  1.1.1.2  christos o_str.c \
     28  1.1.1.2  christos o_time.c \
     29  1.1.1.2  christos threads_none.c \
     30  1.1.1.2  christos threads_pthread.c \
     31  1.1.1.2  christos threads_win.c \
     32  1.1.1.2  christos uid.c
     33  1.1.1.2  christos 
     34      1.1  christos SRCS += ${CRYPTO_SRCS}
     35      1.1  christos 
     36      1.1  christos .if !defined(CPUID)
     37      1.1  christos CRYPTO_SRCS+=  mem_clr.c
     38      1.1  christos .else
     39      1.1  christos CRYPTO_SRCS+=  ${CPUID_SRCS}
     40      1.1  christos .endif
     41      1.1  christos 
     42  1.1.1.2  christos CRYPTOCPPFLAGS+=-DOPENSSL_NO_STATIC_ENGINE
     43  1.1.1.2  christos 
     44      1.1  christos .for cryptosrc in ${CRYPTO_SRCS}
     45      1.1  christos CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/crypto ${CRYPTOCPPFLAGS}
     46      1.1  christos .endfor
     47