hare

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

commit 3d16fdd479c51bf2340e1810830430730d5d1130
parent 8b7783ada64670e9fe44e37eb8ddd2eaa0929159
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 14 Mar 2021 16:16:24 -0400

Makefile: clean should remove .cache

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -45,7 +45,7 @@ $(TESTCACHE)/hare.ssa: $(hare_srcs) $(hare_testlib_deps) $(TESTCACHE)/hare.o $(hare_testlib_deps) clean: - @rm -rf cache .bin + @rm -rf .cache .bin check: .bin/hare-tests @./.bin/hare-tests