1 # $NetBSD: des.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/des/Makefile 6 # 7 8 .PATH: ${OPENSSLSRC}/crypto/des 9 10 DES_SRCS ?= des_enc.c fcrypt_b.c 11 DES_SRCS += \ 12 cbc_cksm.c \ 13 cbc_enc.c \ 14 cfb64ede.c \ 15 cfb64enc.c \ 16 cfb_enc.c \ 17 ecb3_enc.c \ 18 ecb_enc.c \ 19 fcrypt.c \ 20 ofb64ede.c \ 21 ofb64enc.c \ 22 ofb_enc.c \ 23 pcbc_enc.c \ 24 qud_cksm.c \ 25 rand_key.c \ 26 set_key.c \ 27 str2key.c \ 28 xcbc_enc.c 29 30 SRCS += ${DES_SRCS} 31 32 .for cryptosrc in ${DES_SRCS} 33 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/des 34 .endfor 35