hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 2ef6c1a7088e470c587e701431c17dddbd86359f
parent 905e9986566e33998a675eedb91f77c163f1a8f9
Author: Alexey Yerin <yyp@disroot.org>
Date:   Sun, 17 Apr 2022 15:13:34 +0300

gen-stdlib: add crypto::hmac dependency on crypto::sha1 for +test

Signed-off-by: Alexey Yerin <yyp@disroot.org>

Diffstat:
Mscripts/gen-stdlib | 2+-
Mstdlib.mk | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/gen-stdlib b/scripts/gen-stdlib @@ -324,7 +324,7 @@ crypto_hmac() { hmac.ha \ sha1.ha \ sha256.ha - gen_ssa crypto::hmac crypto::mac crypto::sha256 hash io bytes + gen_ssa crypto::hmac crypto::mac crypto::sha1 crypto::sha256 hash io bytes else gen_srcs crypto::hmac \ hmac.ha \ diff --git a/stdlib.mk b/stdlib.mk @@ -833,7 +833,7 @@ stdlib_crypto_hmac_any_srcs= \ $(STDLIB)/crypto/hmac/sha1.ha \ $(STDLIB)/crypto/hmac/sha256.ha -$(HARECACHE)/crypto/hmac/crypto_hmac-any.ssa: $(stdlib_crypto_hmac_any_srcs) $(stdlib_rt) $(stdlib_crypto_mac_$(PLATFORM)) $(stdlib_crypto_sha256_$(PLATFORM)) $(stdlib_hash_$(PLATFORM)) $(stdlib_io_$(PLATFORM)) $(stdlib_bytes_$(PLATFORM)) +$(HARECACHE)/crypto/hmac/crypto_hmac-any.ssa: $(stdlib_crypto_hmac_any_srcs) $(stdlib_rt) $(stdlib_crypto_mac_$(PLATFORM)) $(stdlib_crypto_sha1_$(PLATFORM)) $(stdlib_crypto_sha256_$(PLATFORM)) $(stdlib_hash_$(PLATFORM)) $(stdlib_io_$(PLATFORM)) $(stdlib_bytes_$(PLATFORM)) @printf 'HAREC \t$@\n' @mkdir -p $(HARECACHE)/crypto/hmac @HARECACHE=$(HARECACHE) $(HAREC) $(HAREFLAGS) -o $@ -Ncrypto::hmac \