hare

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

commit 287d733e13ea9cf503070c025f7def1133277c6a
parent 984d55a4eb4af8b1de1213078bf5960c63dfb812
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sat, 28 May 2022 22:26:40 -0400

Makefile: make hare.ssa depend on scripts/version

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -43,7 +43,7 @@ haredoc_srcs = \ ./cmd/haredoc/sort.ha \ ./cmd/haredoc/resolver.ha -$(HARECACHE)/hare.ssa: $(hare_srcs) $(stdlib_deps_any) $(stdlib_deps_$(PLATFORM)) +$(HARECACHE)/hare.ssa: $(hare_srcs) $(stdlib_deps_any) $(stdlib_deps_$(PLATFORM)) scripts/version @printf 'HAREC\t%s\n' "$@" @HARECACHE=$(HARECACHE) $(HAREC) $(HAREFLAGS) \ -D PLATFORM:str='"'"$(PLATFORM)"'"' \ @@ -51,7 +51,7 @@ $(HARECACHE)/hare.ssa: $(hare_srcs) $(stdlib_deps_any) $(stdlib_deps_$(PLATFORM) -D HAREPATH:str='"'"$(HAREPATH)"'"' \ -o $@ $(hare_srcs) -$(TESTCACHE)/hare.ssa: $(hare_srcs) $(testlib_deps_any) $(testlib_deps_$(PLATFORM)) +$(TESTCACHE)/hare.ssa: $(hare_srcs) $(testlib_deps_any) $(testlib_deps_$(PLATFORM)) scripts/version @printf 'HAREC\t%s\n' "$@" @HARECACHE=$(TESTCACHE) $(HAREC) $(TESTHAREFLAGS) \ -D PLATFORM:str='"'"$(PLATFORM)"'"' \