hare

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

commit 83117d1f716b69558724f3d4cdfe0fb36f9a3976
parent 45a6c80e10ef21947061fa5baf5284ca8a53b2df
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 10 Apr 2021 12:23:48 -0400

gen-stdlib: format::xml depends on os

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

diff --git a/scripts/gen-stdlib b/scripts/gen-stdlib @@ -282,7 +282,7 @@ format_xml() { else gensrcs_format_xml +test.ha fi - gen_ssa format::xml io bufio strings ascii strio + gen_ssa format::xml io bufio strings ascii strio os } fs() { diff --git a/stdlib.mk b/stdlib.mk @@ -430,7 +430,7 @@ stdlib_format_xml_srcs= \ $(STDLIB)/format/xml/parser.ha \ $(STDLIB)/format/xml/chars.ha -$(HARECACHE)/format/xml/format_xml.ssa: $(stdlib_format_xml_srcs) $(stdlib_rt) $(stdlib_io) $(stdlib_bufio) $(stdlib_strings) $(stdlib_ascii) $(stdlib_strio) +$(HARECACHE)/format/xml/format_xml.ssa: $(stdlib_format_xml_srcs) $(stdlib_rt) $(stdlib_io) $(stdlib_bufio) $(stdlib_strings) $(stdlib_ascii) $(stdlib_strio) $(stdlib_os) @printf 'HAREC \t$@\n' @mkdir -p $(HARECACHE)/format/xml @HARECACHE=$(HARECACHE) $(HAREC) $(HAREFLAGS) -o $@ -Nformat::xml \ @@ -1275,7 +1275,7 @@ testlib_format_xml_srcs= \ $(STDLIB)/format/xml/chars.ha \ $(STDLIB)/format/xml/+test.ha -$(TESTCACHE)/format/xml/format_xml.ssa: $(testlib_format_xml_srcs) $(testlib_rt) $(testlib_io) $(testlib_bufio) $(testlib_strings) $(testlib_ascii) $(testlib_strio) +$(TESTCACHE)/format/xml/format_xml.ssa: $(testlib_format_xml_srcs) $(testlib_rt) $(testlib_io) $(testlib_bufio) $(testlib_strings) $(testlib_ascii) $(testlib_strio) $(testlib_os) @printf 'HAREC \t$@\n' @mkdir -p $(TESTCACHE)/format/xml @HARECACHE=$(TESTCACHE) $(HAREC) $(TESTHAREFLAGS) -o $@ -Nformat::xml \