Make HTML5 work again

This commit is contained in:
3wc
2024-02-13 00:04:07 -03:00
parent 51d10f430f
commit 1d8222a395
5 changed files with 16 additions and 7 deletions

View File

@ -1,12 +1,15 @@
.PHONY: watch
default: rewild.hl
default: bin/rewild.hl
rewild.hl: **/*.hx
haxe compile.hxml
bin/rewild.hl: **/*.hx
haxe compile-hl.hxml
bin/rewild.js: **/*.hx
haxe compile-js.hxml
clean:
rm rewild.hl
rm -f bin/rewild.hl bin/rewild.js
watch:
@inotifywait --recursive --monitor --event modify,move,create,delete --include '.*.hx$$' ./ | while read changed; do echo $$changed; make; done