Makefile revision 1.11
11.11Sriastrad# $NetBSD: Makefile,v 1.11 2020/07/26 04:25:14 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.1Spooka# blowfish 211.2SpgoyetteSRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c 221.2Spgoyette 231.2Spgoyette# camellia 241.2SpgoyetteSRCS+= camellia.c camellia-api.c 251.1Spooka 261.10Sriastrad# ChaCha 271.10SriastradSRCS+= chacha_impl.c 281.10SriastradSRCS+= chacha_ref.c 291.10SriastradSRCS+= chacha_selftest.c 301.10Sriastrad 311.1Spooka# cast128 321.1SpookaSRCS+= cast128.c 331.1Spooka 341.1Spooka# DES 351.2SpgoyetteSRCS+= des_ecb.c des_setkey.c des_enc.c des_cbc.c des_module.c 361.1Spooka 371.7Sriastrad# AES 381.7SriastradSRCS+= aes_bear.c 391.11SriastradSRCS+= aes_ccm.c 401.11SriastradSRCS+= aes_ccm_mbuf.c 411.7SriastradSRCS+= aes_ct.c 421.7SriastradSRCS+= aes_ct_dec.c 431.7SriastradSRCS+= aes_ct_enc.c 441.7SriastradSRCS+= aes_impl.c 451.7SriastradSRCS+= aes_selftest.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