Makefile revision 1.12
11.12Sriastrad# $NetBSD: Makefile,v 1.12 2020/07/26 04:25:49 riastradh Exp $ 21.1Spooka# 31.1Spooka 41.8Sriastrad.PATH: ${.CURDIR}/../../../../crypto/adiantum \ 51.8Sriastrad ${.CURDIR}/../../../../crypto/aes \ 61.7Sriastrad ${.CURDIR}/../../../../crypto/blowfish \ 71.2Spgoyette ${.CURDIR}/../../../../crypto/camellia \ 81.1Spooka ${.CURDIR}/../../../../crypto/cast128 \ 91.11Sriastrad ${.CURDIR}/../../../../crypto/chacha \ 101.1Spooka ${.CURDIR}/../../../../crypto/des \ 111.1Spooka ${.CURDIR}/../../../../crypto/skipjack 121.1Spooka 131.1SpookaLIB= rumpkern_crypto 141.4SpookaCOMMENT=Cryptographic routines 151.1Spooka 161.8Sriastrad# Adiantum 171.8SriastradSRCS+= adiantum.c 181.8SriastradSRCS+= adiantum_selftest.c 191.8Sriastrad 201.12Sriastrad# AES 211.12SriastradSRCS+= aes_bear.c 221.12SriastradSRCS+= aes_ccm.c 231.12SriastradSRCS+= aes_ccm_mbuf.c 241.12SriastradSRCS+= aes_ct.c 251.12SriastradSRCS+= aes_ct_dec.c 261.12SriastradSRCS+= aes_ct_enc.c 271.12SriastradSRCS+= aes_impl.c 281.12SriastradSRCS+= aes_selftest.c 291.12Sriastrad 301.1Spooka# blowfish 311.2SpgoyetteSRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c 321.2Spgoyette 331.2Spgoyette# camellia 341.2SpgoyetteSRCS+= camellia.c camellia-api.c 351.1Spooka 361.12Sriastrad# cast128 371.12SriastradSRCS+= cast128.c 381.12Sriastrad 391.10Sriastrad# ChaCha 401.10SriastradSRCS+= chacha_impl.c 411.10SriastradSRCS+= chacha_ref.c 421.10SriastradSRCS+= chacha_selftest.c 431.10Sriastrad 441.1Spooka# DES 451.2SpgoyetteSRCS+= des_ecb.c des_setkey.c des_enc.c des_cbc.c des_module.c 461.1Spooka 471.1Spooka# skipjack 481.1SpookaSRCS+= skipjack.c 491.1Spooka 501.1Spooka.include <bsd.lib.mk> 511.1Spooka.include <bsd.klinks.mk> 52