2024-02-11 01:40:40 +00:00
|
|
|
.PHONY: watch
|
|
|
|
|
2024-02-12 19:47:53 +00:00
|
|
|
default: rewild.hl
|
|
|
|
|
2024-02-11 01:40:40 +00:00
|
|
|
rewild.hl: **/*.hx
|
|
|
|
haxe compile.hxml
|
|
|
|
|
2024-02-12 19:47:53 +00:00
|
|
|
clean:
|
|
|
|
rm rewild.hl
|
|
|
|
|
2024-02-11 01:40:40 +00:00
|
|
|
watch:
|
|
|
|
@inotifywait --recursive --monitor --event modify,move,create,delete --include '.*.hx$$' ./ | while read changed; do echo $$changed; make; done
|