commit 9dc6b14bb2629f500f3e87cacaff66abe0feef4a parent 9a3f59a75abd49eeeef3f5ef03f3c0879f22f84c Author: Drew DeVault <sir@cmpwn.com> Date: Sun, 27 Jun 2021 12:15:59 -0400 temp: declare dependency on fmt Signed-off-by: Drew DeVault <sir@cmpwn.com> Diffstat:
M | scripts/gen-stdlib | | | 2 | +- |
M | stdlib.mk | | | 4 | ++-- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/gen-stdlib b/scripts/gen-stdlib @@ -742,7 +742,7 @@ time() { temp() { gen_srcs temp \ '$(PLATFORM).ha' - gen_ssa temp crypto::random encoding::hex fs io os path strio + gen_ssa temp crypto::random encoding::hex fs io os path strio fmt } types() { diff --git a/stdlib.mk b/stdlib.mk @@ -1040,7 +1040,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) $(stdlib_crypto_random) $(stdlib_encoding_hex) $(stdlib_fs) $(stdlib_io) $(stdlib_os) $(stdlib_path) $(stdlib_strio) +$(HARECACHE)/temp/temp.ssa: $(stdlib_temp_srcs) $(stdlib_rt) $(stdlib_crypto_random) $(stdlib_encoding_hex) $(stdlib_fs) $(stdlib_io) $(stdlib_os) $(stdlib_path) $(stdlib_strio) $(stdlib_fmt) @printf 'HAREC \t$@\n' @mkdir -p $(HARECACHE)/temp @HARECACHE=$(HARECACHE) $(HAREC) $(HAREFLAGS) -o $@ -Ntemp \ @@ -2215,7 +2215,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) $(testlib_crypto_random) $(testlib_encoding_hex) $(testlib_fs) $(testlib_io) $(testlib_os) $(testlib_path) $(testlib_strio) +$(TESTCACHE)/temp/temp.ssa: $(testlib_temp_srcs) $(testlib_rt) $(testlib_crypto_random) $(testlib_encoding_hex) $(testlib_fs) $(testlib_io) $(testlib_os) $(testlib_path) $(testlib_strio) $(testlib_fmt) @printf 'HAREC \t$@\n' @mkdir -p $(TESTCACHE)/temp @HARECACHE=$(TESTCACHE) $(HAREC) $(TESTHAREFLAGS) -o $@ -Ntemp \