From e375d0028e38dab31e12da14749dbd2201f45ff7 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Thu, 22 Feb 2024 14:39:58 -0300 Subject: [PATCH] Rename binaries --- compile-hl.hxml | 2 +- makefile | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/compile-hl.hxml b/compile-hl.hxml index 5b3982b..63f9d96 100644 --- a/compile-hl.hxml +++ b/compile-hl.hxml @@ -2,4 +2,4 @@ compile-common.hxml -D windowTitle=StoneInAGlasshouse -lib hlsdl --hl bin/rewild.hl +-hl bin/glasshouse.hl diff --git a/makefile b/makefile index fc0e07f..23b8ebb 100644 --- a/makefile +++ b/makefile @@ -1,23 +1,23 @@ .PHONY: watch run -default: bin/rewild.hl +default: bin/glasshouse.hl SOURCES := $(shell find . -name \*.hx -print) -bin/rewild.hl: $(SOURCES) +bin/glasshouse.hl: $(SOURCES) haxe compile-hl.hxml -bin/rewild.js: $(SOURCES) +bin/glasshouse.js: $(SOURCES) haxe compile-js.hxml debug: $(SOURCES) haxe --debug compile-hl.hxml clean: - rm -f bin/rewild.hl bin/rewild.js + rm -f bin/glasshouse.hl bin/glasshouse.js watch: @inotifywait --recursive --monitor --event modify,move,create,delete --include '.*.hx$$' ./ | while read changed; do echo $$changed; make debug; done run: - hl bin/rewild.hl + hl bin/glasshouse.hl