hare

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

commit d157d2a4ab3635aaa1abd880300095ce4fd0d83b
parent 9d5fb736b66965f690b959b250d53c41f8de7513
Author: Steven Guikal <void@fluix.dev>
Date:   Mon,  8 Mar 2021 12:20:35 -0500

stdlib: add math::random

Diffstat:
Mgen-stdlib | 8++++++++
Mmk/stdlib.mk | 26++++++++++++++++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/gen-stdlib b/gen-stdlib @@ -322,6 +322,13 @@ io() { gen_ssa io strings } +math_random() { + printf '# math::random\n' + gen_srcs math::random \ + random.ha + gen_ssa math::random +} + os() { printf '# os\n' gen_srcs os \ @@ -465,6 +472,7 @@ hare_parse hash hash_fnv io +math_random os os_exec path diff --git a/mk/stdlib.mk b/mk/stdlib.mk @@ -120,6 +120,9 @@ hare_stdlib_deps+=$(stdlib_hash_fnv) stdlib_io=$(HARECACHE)/io/io.o hare_stdlib_deps+=$(stdlib_io) +stdlib_math_random=$(HARECACHE)/math/random/math.random.o +hare_stdlib_deps+=$(stdlib_math_random) + stdlib_os=$(HARECACHE)/os/os.o hare_stdlib_deps+=$(stdlib_os) @@ -376,6 +379,16 @@ $(HARECACHE)/io/io.ssa: $(stdlib_io_srcs) $(stdlib_rt) $(stdlib_strings) @HARECACHE=$(HARECACHE) $(HAREC) $(HAREFLAGS) -o $@ -Nio \ -t$(HARECACHE)/io/io.td $(stdlib_io_srcs) +# math::random +stdlib_math_random_srcs= \ + $(STDLIB)/math/random/random.ha + +$(HARECACHE)/math/random/math.random.ssa: $(stdlib_math_random_srcs) $(stdlib_rt) + @printf 'HAREC \t$@\n' + @mkdir -p $(HARECACHE)/math/random + @HARECACHE=$(HARECACHE) $(HAREC) $(HAREFLAGS) -o $@ -Nmath::random \ + -t$(HARECACHE)/math/random/math.random.td $(stdlib_math_random_srcs) + # os stdlib_os_srcs= \ $(STDLIB)/os/$(PLATFORM)/environ.ha \ @@ -623,6 +636,9 @@ hare_testlib_deps+=$(testlib_hash_fnv) testlib_io=$(TESTCACHE)/io/io.o hare_testlib_deps+=$(testlib_io) +testlib_math_random=$(TESTCACHE)/math/random/math.random.o +hare_testlib_deps+=$(testlib_math_random) + testlib_os=$(TESTCACHE)/os/os.o hare_testlib_deps+=$(testlib_os) @@ -886,6 +902,16 @@ $(TESTCACHE)/io/io.ssa: $(testlib_io_srcs) $(testlib_rt) $(testlib_strings) @HARECACHE=$(TESTCACHE) $(HAREC) $(TESTHAREFLAGS) -o $@ -Nio \ -t$(TESTCACHE)/io/io.td $(testlib_io_srcs) +# math::random +testlib_math_random_srcs= \ + $(STDLIB)/math/random/random.ha + +$(TESTCACHE)/math/random/math.random.ssa: $(testlib_math_random_srcs) $(testlib_rt) + @printf 'HAREC \t$@\n' + @mkdir -p $(TESTCACHE)/math/random + @HARECACHE=$(TESTCACHE) $(HAREC) $(TESTHAREFLAGS) -o $@ -Nmath::random \ + -t$(TESTCACHE)/math/random/math.random.td $(testlib_math_random_srcs) + # os testlib_os_srcs= \ $(STDLIB)/os/$(PLATFORM)/environ.ha \