hare

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

commit ac3222b2e1fd0e94b4b1483df5b3db06b9c8edca
parent aec0f3c0818e0c84ceb7afb250d434e6eac87a17
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue,  9 Mar 2021 15:59:45 -0500

Update temp dependencies

Diffstat:
Mgen-stdlib | 2+-
Mmk/stdlib.mk | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gen-stdlib b/gen-stdlib @@ -445,7 +445,7 @@ temp() { printf '# temp\n' gen_srcs temp \ '$(PLATFORM).ha' - gen_ssa temp + gen_ssa temp crypto::random encoding::hex fs io os path } types() { diff --git a/mk/stdlib.mk b/mk/stdlib.mk @@ -509,7 +509,7 @@ $(HARECACHE)/strio/strio.ssa: $(stdlib_strio_srcs) $(stdlib_rt) $(stdlib_io) $(s stdlib_temp_srcs= \ $(STDLIB)/temp/$(PLATFORM).ha -$(HARECACHE)/temp/temp.ssa: $(stdlib_temp_srcs) $(stdlib_rt) +$(HARECACHE)/temp/temp.ssa: $(stdlib_temp_srcs) $(stdlib_rt) $(stdlib_crypto_random) $(stdlib_encoding_hex) $(stdlib_fs) $(stdlib_io) $(stdlib_os) $(stdlib_path) @printf 'HAREC \t$@\n' @mkdir -p $(HARECACHE)/temp @HARECACHE=$(HARECACHE) $(HAREC) $(HAREFLAGS) -o $@ -Ntemp \ @@ -1048,7 +1048,7 @@ $(TESTCACHE)/strio/strio.ssa: $(testlib_strio_srcs) $(testlib_rt) $(testlib_io) testlib_temp_srcs= \ $(STDLIB)/temp/$(PLATFORM).ha -$(TESTCACHE)/temp/temp.ssa: $(testlib_temp_srcs) $(testlib_rt) +$(TESTCACHE)/temp/temp.ssa: $(testlib_temp_srcs) $(testlib_rt) $(testlib_crypto_random) $(testlib_encoding_hex) $(testlib_fs) $(testlib_io) $(testlib_os) $(testlib_path) @printf 'HAREC \t$@\n' @mkdir -p $(TESTCACHE)/temp @HARECACHE=$(TESTCACHE) $(HAREC) $(TESTHAREFLAGS) -o $@ -Ntemp \