Makefile revision 1.10
11.10Sriastrad# $NetBSD: Makefile,v 1.10 2020/07/26 04:03:45 riastradh Exp $ 21.1Spooka# 31.1Spooka 41.8Sriastrad.PATH: ${.CURDIR}/../../../../crypto/adiantum \ 51.8Sriastrad ${.CURDIR}/../../../../crypto/aes \ 61.10Sriastrad ${.CURDIR}/../../../../crypto/chacha \ 71.7Sriastrad ${.CURDIR}/../../../../crypto/blowfish \ 81.2Spgoyette ${.CURDIR}/../../../../crypto/camellia \ 91.1Spooka ${.CURDIR}/../../../../crypto/cast128 \ 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.7SriastradSRCS+= aes_ct.c 401.7SriastradSRCS+= aes_ct_dec.c 411.7SriastradSRCS+= aes_ct_enc.c 421.7SriastradSRCS+= aes_impl.c 431.7SriastradSRCS+= aes_selftest.c 441.1Spooka 451.1Spooka# skipjack 461.1SpookaSRCS+= skipjack.c 471.1Spooka 481.1Spooka.include <bsd.lib.mk> 491.1Spooka.include <bsd.klinks.mk> 50