hare

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

commit 6f6067ba16ca3cc21447db4cbe8ec60df81daf9d
parent 0814147ba9dd087e0e3cf1b85c5e705f8aa0e06a
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 21 Aug 2021 09:33:16 +0200

Makefile: set harec and haredoc as PHONY

The Hare build system tracks their dependencies, so make doesn't know
when they're up-to-date.

Signed-off-by: Drew DeVault <sir@cmpwn.com>

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

diff --git a/Makefile b/Makefile @@ -92,4 +92,4 @@ check: .bin/hare-tests all: .bin/hare .bin/harec .bin/haredoc -.PHONY: all clean check +.PHONY: all clean check .bin/harec .bin/haredoc