hare

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

commit 9ca0cadca9e02ad9031bf591311f663fe8008ae9
parent ebd4802ea64cfbd7ab9551259462518dfd1af5e2
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 21 Apr 2022 15:46:55 -0400

gen-stdlib: remove duplicate dependency

Signed-off-by: Sebastian <sebastian@sebsite.pw>
Co-authored-by: Eyal Sawady <ecs@d2evs.net>

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 @@ -411,7 +411,7 @@ crypto_sha256() { else gensrcs_crypto_sha256 \ +test.ha - genssa_crypto_sha256 hash fmt strings encoding::hex + genssa_crypto_sha256 fmt strings encoding::hex fi } diff --git a/stdlib.mk b/stdlib.mk @@ -2908,7 +2908,7 @@ testlib_crypto_sha256_any_srcs= \ $(STDLIB)/crypto/sha256/sha256.ha \ $(STDLIB)/crypto/sha256/+test.ha -$(TESTCACHE)/crypto/sha256/crypto_sha256-any.ssa: $(testlib_crypto_sha256_any_srcs) $(testlib_rt) $(testlib_bytes_$(PLATFORM)) $(testlib_hash_$(PLATFORM)) $(testlib_io_$(PLATFORM)) $(testlib_endian_$(PLATFORM)) $(testlib_hash_$(PLATFORM)) $(testlib_fmt_$(PLATFORM)) $(testlib_strings_$(PLATFORM)) $(testlib_encoding_hex_$(PLATFORM)) +$(TESTCACHE)/crypto/sha256/crypto_sha256-any.ssa: $(testlib_crypto_sha256_any_srcs) $(testlib_rt) $(testlib_bytes_$(PLATFORM)) $(testlib_hash_$(PLATFORM)) $(testlib_io_$(PLATFORM)) $(testlib_endian_$(PLATFORM)) $(testlib_fmt_$(PLATFORM)) $(testlib_strings_$(PLATFORM)) $(testlib_encoding_hex_$(PLATFORM)) @printf 'HAREC \t$@\n' @mkdir -p $(TESTCACHE)/crypto/sha256 @HARECACHE=$(TESTCACHE) $(HAREC) $(TESTHAREFLAGS) -o $@ -Ncrypto::sha256 \